Rebol Programming/case
USAGE:
editCASE block /all
DESCRIPTION:
editEvaluates each condition, and when true, evaluates what follows it.
CASE is a native value.
ARGUMENTS
edit- block -- Block of cases (conditions followed by values) (Type: block)
REFINEMENTS
edit- /all -- Evaluate all cases (do not stop at first true case)
SOURCE CODE
editcase: native[ {Evaluates each condition, and when true, evaluates what follows it.} block [block!] "Block of cases (conditions followed by values)" /all {Evaluate all cases (do not stop at first true case)} ]