push-all ( src dst -- )
Factor handbook » The language » Collections » Sequence operations » Treating sequences as stacks

Prev:push ( elt seq -- )
Next:pop ( seq -- elt )


Vocabulary
sequences

Inputs
srca sequence
dsta resizable mutable sequence


Outputs
None

Word description
Appends src to the end of dst.

Side effects
Modifies dst

Errors
Throws an error if src contains elements not permitted in dst.

See also
append, append-as, append!, 3append, 3append-as

Definition