- Introduction
- Platform
- Tutorial
- FAQ
- Language reference
- Verbs
- Iterators
- Queries
- Dynamic parsers
- Standard library
- Plugins
- For Python developers
- For KDB+ developers
- Application examples
untrace
Removes trace from a function.
Syntax: untrace x; untrace[x]
o)f:{a:x+1;b:a*2;c:b-1;c};
o)trace `f;
o)untrace `f;
o)f[1]
3
o)