VocabularysequencesInputsOutputsWord descriptionOutputs a new sequence of the same type as
exemplar consisting of the elements of
seq2 followed by
seq1.
ErrorsThrows an error if
seq1 or
seq2 contain elements not permitted in sequences of the same class as
exemplar.
ExamplesUSING: prettyprint sequences ;
{ 3 4 } B{ 1 2 } B{ } prepend-as .
B{ 1 2 3 4 }
USING: prettyprint sequences strings ;
"ing" "go" SBUF" " prepend-as .
SBUF" going"
See alsoprependDefinition