Rebol Programming/or~

From Wikibooks, open books for an open world
Jump to navigation Jump to search

USAGE:

[edit | edit source]
OR~ value1 value2 

DESCRIPTION:

[edit | edit source]

Returns the first value ORed with the second.

OR~ is an action value.

ARGUMENTS:

[edit | edit source]
  • value1 -- (Type: logic number char tuple binary string image)
  • value2 -- (Type: logic number char tuple binary string image)

SOURCE CODE

[edit | edit source]
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!]
]