跳转到内容

Rebol 编程/xor~

来自维基教科书,开放的书,开放的世界
XOR~ value1 value2 

返回第一个值与第二个值异或。

XOR~ 是一个动作值。

  • value1 -- (类型:逻辑值 数字 字符 元组 二进制字符串 图片)
  • value2 -- (类型:逻辑值 数字 字符 元组 二进制字符串 图片)

源代码

[编辑 | 编辑源代码]
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!]
]
华夏公益教科书