$xor

From Scriptwiki
Jump to: navigation, search

Performs a bit-wise EXCLUSIVE OR comparison against two numbers

$xor(number 1, number 2)

Examples

$xor(5,6)

Binary values of each:

00000101
00000110

Leaving the bits which are in either 5 OR 6, BUT NOT BOTH.

Returns: 3 (00000011)