BITXOR

Synopsis
BITXOR int1 int2
(BITXOR int1 int2 int3 ...)
Description

Outputs the bitwise exclusive OR of its inputs, which must be integers. If no inputs are given, then BITXOR outputs a value with no bits set.

Example
SHOW BITXOR 5 2
7
SHOW BITXOR 5 1
4
SHOW (BITXOR 6 2 10)
14

SourceForge.net Logo