Rebol Programming/clear

USAGE:

edit
CLEAR series 

DESCRIPTION:

edit

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

CLEAR is an action value.

ARGUMENTS

edit
  • series -- (Type: series port bitset none)

SOURCE CODE

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