Rebol 编程/或
外观
< Rebol 编程
value1 OR 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!] ]