Rebol Programming/tail?

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

USAGE:[edit | edit source]

TAIL? series 

DESCRIPTION:[edit | edit source]

Returns TRUE if a series is at its tail.

TAIL? is an action value.

ARGUMENTS[edit | edit source]

  • series -- (Type: series port bitset)

SOURCE CODE[edit | edit source]

tail?: native[
    "Returns TRUE if a series is at its tail." 
    series [series! port! bitset!]
]