Rebol 编程/or~
外观
< Rebol 编程
OR~ value1 value2
返回第一个值与第二个值进行“或”运算的结果。
OR~ 是一个动作值。
- value1 -- (类型:逻辑数字符元组二进制字符串图像)
- value2 -- (类型:逻辑数字符元组二进制字符串图像)
or~: native[ "Returns the first value ORed with the second." value1 [logic! number! char! tuple! binary! string! image!] value2 [logic! number! char! tuple! binary! string! image!] ]