Rebol Programming/at

From Wikibooks, open books for an open world
Jump to navigation Jump to search

USAGE:

[edit | edit source]
AT series index 

DESCRIPTION:

[edit | edit source]

Returns the series at the specified index.

AT is an action value.

ARGUMENTS

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

SOURCE CODE

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