Rebol Programming/set
USAGE:
editSET word value /any /pad
DESCRIPTION:
editSets a word, block of words, or object to specified value(s).
SET is a native value.
ARGUMENTS
edit- word -- Word or words to set (Type: any-word block object)
- value -- Value or block of values (Type: any-type)
REFINEMENTS
edit- /any -- Allows setting words to any value.
- /pad -- For objects, if block is too short, remaining words are set to NONE.
SOURCE CODE
editset: native[ {Sets a word, block of words, or object to specified value(s).} word [any-word! block! object!] "Word or words to set" value [any-type!] "Value or block of values" /any "Allows setting words to any value." /pad {For objects, if block is too short, remaining words are set to NONE.} ]