REBOL Programming/xor

< REBOL Programming

USAGE:

value1 XOR value2 

DESCRIPTION:

Returns the first value exclusive ORed with the second.

XOR is an op value.

ARGUMENTS

SOURCE CODE

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!]
]
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.