forked from rebol/rebol
-
Notifications
You must be signed in to change notification settings - Fork 2
angerangel edited this page Mar 19, 2013
·
1 revision
OR~ value1 value2
Returns the first value ORed with the second.
OR~ is an action value.
- value1 (logic! integer! char! tuple! binary! bitset! typeset! datatype!)
- value2 (logic! integer! char! tuple! binary! bitset! typeset! datatype!)
#SOURCE
Or~: make action! [ [
"Returns the first value ORed with the second."
value1 [logic! integer! char! tuple! binary! bitset! typeset! datatype!]
value2 [logic! integer! char! tuple! binary! bitset! typeset! datatype!]
] ]