Array.tail()

From ZCubes Wiki
Revision as of 09:22, 22 April 2020 by Devika (talk | contribs) (→‎Array.tail())
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search


Array.tail()

Get the tail of the array, without the first element.

Same as Array.cdr()

A=20..30; A.tail()


21 22 23 24 25 26 27 28 29 30

A=(-10)..10; A.tail()


-9 -8 -7 -6 -5 -4 -3 -2 -1 0 1 2 3 4 5 6 7 8 9 10

See Also

car

head