bitxor
Bitwise XOR of two integers.
Syntax
Section titled “Syntax”v = bitxor(a, b)Description
Section titled “Description”Returns the integer whose bits are set where exactly one of a and b has a set bit.
Example
Section titled “Example”bitxor(12, 10) % 6 (1100 ^ 1010 = 0110)