forked from rebol/rebol
-
Notifications
You must be signed in to change notification settings - Fork 2
Poke
angerangel edited this page Mar 19, 2013
·
1 revision
POKE series index value
Replaces an element at a given position.
POKE is an action value.
- series -- (modified) (series! port! map! gob! bitset!)
- index -- Index offset, symbol, or other value to use as index
- value -- The new value (returned) (any-type!)
#SOURCE
poke: make action! [ [
"Replaces an element at a given position."
series [series! port! map! gob! bitset!] "(modified)"
index {Index offset, symbol, or other value to use as index}
value [any-type!] "The new value (returned)"
] ]