- 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 OR (bor)
Syntax: <x> bor <y>
; bor[<x>; <y>]
o)10 bor 12
14
o)
Explanation:
1010
OR 1100
====
1110