Description:
Perform XOR operation on integers.
Syntax:
xor(xi,…) |
xor(A) |
Note:
The function performs XOR operation on integers. It supports a decimal without the fractional part.
Parameter:
A |
A sequence |
xi |
The numerical expression based on which you perform the XOR operation |
Return value:
An integer
Example:
xor(6,11) |
13 |
|
xor([6,11]) |
1 |
|
xor(decimal(6),decimal(11)) |
13, which is the decimal type |
|