- Introduction
- Platform
- Tutorial
- Language reference
- Verbs
- Iterators
- Queries
- Dynamic parsers
- Language idioms
- Standard library
- Plugins
- For Python developers
- For KDB+ developers
- Application examples
- FAQ
Dyadic @ (at)
Indexes left argument (vector/list/dict) by right argument.
Syntax: <x> @ <y>
; @[<x>; <y>]
o)1 2 3@0 1
1 2
o)@[til 10;2 8]
2 8
o)(`a`b!1 2)@`b`a`c
2 1 0N
o)t:([]a:1 2 3;b:`a`b`c)
a b
---
1 a
2 b
3 c
o)t@2
a| 3
b| `c
o)