Rebol Programming/clear

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

USAGE:

[edit | edit source]
CLEAR series 

DESCRIPTION:

[edit | edit source]

Removes all values from the current index to the tail. Returns at tail.

CLEAR is an action value.

ARGUMENTS

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

SOURCE CODE

[edit | edit source]
clear: native[
    {Removes all values from the current index to the tail. Returns at tail.} 
    series [series! port! bitset! none!]
]