REBOL 3 Docs Guide Concepts Functions Datatypes Errors
  TOC < Back Next >   Updated: 3-Aug-2010 Edit History  

REBOL 3 Functions: tail

tail  series

Returns the series at the position after the last value.

Arguments:

series [series! gob! port!]

See also:

tail?   head   head?  

Description

Access to the tail allows insertion at the end of a series (because insertion always occurs before the specified element).

blk: copy [11 22 33]
insert tail blk [44 55 66]
print blk
11 22 33 44 55 66


  TOC < Back Next > REBOL.com - WIP Wiki Feedback Admin