Rebol Programming/xor~
USAGE:Edit
XOR~ value1 value2
DESCRIPTION:Edit
Returns the first value exclusive ORed with the second.
XOR~ is an action value.
ARGUMENTSEdit
- value1 -- (Type: logic number char tuple binary string image)
- value2 -- (Type: logic number char tuple binary string image)
SOURCE CODEEdit
xor~: 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!] ]