Rebol Programming/all

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

USAGE:[edit | edit source]

ALL block 

DESCRIPTION:[edit | edit source]

Shortcut AND. Evaluates and returns at the first FALSE or NONE.

ALL is a native value.

ARGUMENTS[edit | edit source]

  • block -- Block of expressions (Type: block)

SOURCE CODE[edit | edit source]

all: native[
    {Shortcut AND. Evaluates and returns at the first FALSE or NONE.} 
    block [block!] "Block of expressions"
]