Rebol Programming/at
USAGE:
AT series index
DESCRIPTION:
Returns the series at the specified index.
AT is an action value.
ARGUMENTS
- series -- (Type: series port)
- index -- Can be positive, negative, or zero. (Type: number logic pair)
SOURCE CODE
at: native[
"Returns the series at the specified index."
series [series! port!]
index [number! logic! pair!] "Can be positive, negative, or zero."
]