< Rebol Programming

USAGE:

SKIP series offset 

DESCRIPTION:

Returns the series forward or backward from the current position.

SKIP is an action value.

ARGUMENTS

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

SOURCE CODE

skip: native[
    {Returns the series forward or backward from the current position.} 
    series [series! port!] 
    offset [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.