forked from rebol/rebol
-
Notifications
You must be signed in to change notification settings - Fork 2
Remove
angerangel edited this page Mar 19, 2013
·
1 revision
REMOVE series /part length
Removes element(s); returns same position.
REMOVE is an action value.
- series -- At position (modified) (series! gob! port! bitset! none!)
-
/part -- Removes multiple elements or to a given position
- length (number! series! pair! char!)
#SOURCE
remove: make action! [ [
"Removes element(s); returns same position."
series [series! gob! port! bitset! none!] "At position (modified)"
/part "Removes multiple elements or to a given position"
length [number! series! pair! char!]
] ]