forked from rebol/rebol
-
Notifications
You must be signed in to change notification settings - Fork 2
Pick
angerangel edited this page Mar 19, 2013
·
1 revision
PICK aggregate index
Returns the value at the specified position.
PICK is an action value.
- aggregate (series! map! gob! pair! date! time! tuple! bitset! port!)
- index -- Index offset, symbol, or other value to use as index
#SOURCE
pick: make action! [ [
"Returns the value at the specified position."
aggregate [series! map! gob! pair! date! time! tuple! bitset! port!]
index {Index offset, symbol, or other value to use as index}
] ]