Rebol Programming/length?

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

USAGE:

[edit | edit source]
LENGTH? series 

DESCRIPTION:

[edit | edit source]

Returns the length of the series from the current position.

LENGTH? is an action value.

ARGUMENTS:

[edit | edit source]
  • series -- (Type: series port tuple bitset struct)

SOURCE CODE

[edit | edit source]
length?: native[
    {Returns the length of the series from the current position.} 
    series [series! port! tuple! bitset! struct!]
]