concat-as ( seq exemplar -- newseq )
Factor handbook » The language » Collections » Sequence operations » Appending sequences

Prev:concat ( seq -- newseq )
Next:join ( seq glue -- newseq )


Vocabulary
sequences

Inputs
seqa sequence
exemplara sequence


Outputs
newseqa sequence


Word description
Concatenates a sequence of sequences together into one sequence with the same type as exemplar.

Errors
Throws an error if one of the sequences in seq contains elements not permitted in sequences of the same class as exemplar.

See also
join, join-as, concat

Definition