VocabularysequencesInputsOutputsWord descriptionOutputs a new sequence consisting of the input sequence with the first
n items removed.
ExamplesUSING: sequences prettyprint ;
{ 1 2 3 4 5 6 7 } 2 tail .
{ 3 4 5 6 7 }
When a sequence may not have enough elements:
USING: sequences prettyprint ;
{ 1 2 } 5 index-or-length tail .
{ }
ErrorsThrows an error if the index is out of bounds.
See alsotail*,
tail-slice,
tail-slice*Definition