Rebol Programming/switch

USAGE:

edit
SWITCH value cases /default case /all 

DESCRIPTION:

edit

Selects a choice and evaluates the block that follows it.

SWITCH is a native value.

ARGUMENTS

edit
  • value -- Value to search for. (Type: any)
  • cases -- Block of cases to search. (Type: block)

REFINEMENTS

edit
  • /default
    • case -- Default case if no others are found. (Type: any)
  • /all -- Evaluates all matches (not just first one).

SOURCE CODE

edit
switch: native[
    {Selects a choice and evaluates the block that follows it.} 
    value "Value to search for." 
    cases [block!] "Block of cases to search." 
    /default case "Default case if no others are found." 
    /all "Evaluates all matches (not just first one)."
]