Rebol Programming/at

USAGE:Edit

AT series index 

DESCRIPTION:Edit

Returns the series at the specified index.

AT is an action value.

ARGUMENTSEdit

  • series -- (Type: series port)
  • index -- Can be positive, negative, or zero. (Type: number logic pair)

SOURCE CODEEdit

at: native[
    "Returns the series at the specified index." 
    series [series! port!] 
    index [number! logic! pair!] "Can be positive, negative, or zero."
]