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