forked from rebol/rebol
-
Notifications
You must be signed in to change notification settings - Fork 2
Unprotect
angerangel edited this page Mar 20, 2013
·
1 revision
UNPROTECT value /deep /words /values
Unprotect a series or a variable (it can again be modified).
UNPROTECT is a native value.
- value (word! series! bitset! map! object! module!)
- /deep -- Protect all sub-series as well
- /words -- Block is a list of words
- /values -- Process list of values (implied GET)
#SOURCE
unprotect: make native! [ [
{Unprotect a series or a variable (it can again be modified).}
value [word! series! bitset! map! object! module!]
/deep "Protect all sub-series as well"
/words "Block is a list of words"
/values "Process list of values (implied GET)"
] ]