bitxor(X;Y)
Returns the bitwise XOR (exclusive-OR) of two 32-bit integers.
Syntax
bitxor(X;Y)
Input
Argument | Type | Description |
---|---|---|
X |
integer | A scalar value or the name of a column |
Y |
integer | A scalar value or the name of a column |
Note:
X
and Y
must be 32-bit integers (between -2147483646
and +2147483646).Return Value
Returns an integer value corresponding to the bitwise XOR (exclusive-OR) of
X
and Y
.
If X
and Y
are equal, the result is
0.
If X
and/or Y
is N/A, they are handled according to their
internal representation like any other number.