Rebol Programming/xor
USAGE:
editvalue1 XOR value2
DESCRIPTION:
editReturns the first value exclusive ORed with the second.
XOR is an op value.
ARGUMENTS
edit- value1 -- (Type: logic number char tuple binary string image)
- value2 -- (Type: logic number char tuple binary string image)
SOURCE CODE
editxor: native[ {Returns the first value exclusive ORed with the second.} value1 [logic! number! char! tuple! binary! string! image!] value2 [logic! number! char! tuple! binary! string! image!] ]