- 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 bitwise AND (band)
Syntax: <x> band <y>
; band[<x>; <y>]
o)10 band 12
8
o)
Explanation:
1010
AND 1100
====
1000