VocabularysequencesInputsseq | a resizable mutable sequence. |
elt | an object |
Outputsseq | a resizable mutable sequence. |
Word descriptionModifiers a sequence in-place by adding
elt to the end of
seq. Outputs
seq.
NotesThe sequence
seq MUST be growable. See
Resizable sequence implementation.
ErrorsThrows an error if the type of
elt is not permitted in sequences of the same class as
seq.
ExamplesUSING: prettyprint sequences ;
V{ 1 2 3 } 4 suffix! .
V{ 1 2 3 4 }
See alsopush,
push-either,
push-when,
pop,
pop*,
prefix,
suffixDefinition