Rebol Programming/length?

USAGE: edit

LENGTH? series 

DESCRIPTION: edit

Returns the length of the series from the current position.

LENGTH? is an action value.

ARGUMENTS: edit

  • series -- (Type: series port tuple bitset struct)

SOURCE CODE edit

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