Rebol Programming/pick
USAGE:Edit
PICK series index
DESCRIPTION:Edit
Returns the value at the specified position in a series.
PICK is an action value.
ARGUMENTS:Edit
- series -- (Type: series pair event money date time object port tuple any-function)
- index -- (Type: number logic pair)
SOURCE CODEEdit
pick: native[ {Returns the value at the specified position in a series.} series [series! pair! event! money! date! time! object! port! tuple! any-function!] index [number! logic! pair!] ]