- 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 XOR (bxor)
Syntax: <x> bxor <y>
; bxor[<x>; <y>]
o)10 bxor 12
6
o)
Explanation:
1010
XOR 1100
====
0110