Rebol Programming/append

USAGE:

edit
APPEND series value /only 

DESCRIPTION:

edit

Appends a value to the tail of a series and returns the series head.

APPEND is a function value.

ARGUMENTS

edit
  • series -- (Type: series port)
  • value -- (Type: any)

REFINEMENTS

edit
  • /only -- Appends a block value as a block

SOURCE CODE

edit
append: func [
    {Appends a value to the tail of a series and returns the series head.} 
    series [series! port!] 
    value 
    /only "Appends a block value as a block"
][
    head either only [
        insert/only tail series :value
    ] [
        insert tail series :value
    ]
]