Rebol Programming/switch
USAGE:
editSWITCH value cases /default case /all
DESCRIPTION:
editSelects 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
editswitch: 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)." ]