VocabularysequencesInputsOutputsWord descriptionOutputs a new sequence of the same type as
seq1 consisting of the elements of
seq1 followed by
seq2.
ErrorsThrows an error if
seq2 contains elements not permitted in sequences of the same class as
seq1.
ExamplesUSING: prettyprint sequences ;
{ 1 2 } B{ 3 4 } append .
{ 1 2 3 4 }
USING: prettyprint sequences strings ;
"go" "ing" append .
"going"
See alsoappend-as,
append!,
3append,
3append-as,
push-allDefinition