Rebol Programming/empty?

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

USAGE:

[edit | edit source]
EMPTY? series 

DESCRIPTION:

[edit | edit source]

Returns TRUE if a series is at its tail.

EMPTY? is an action value.

ARGUMENTS

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

SOURCE CODE

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