< Rebol Programming

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."
]

This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.