Rebol Programming/all

USAGE:

edit
ALL block 

DESCRIPTION:

edit

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

ALL is a native value.

ARGUMENTS

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

SOURCE CODE

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