VocabularysequencesInputsOutputsWord descriptionConcatenates a sequence of sequences together into one sequence, placing a copy of
glue between each pair of sequences. The resulting sequence is of the same class as
glue.
ExamplesJoin a list of strings:
USING: sequences prettyprint ;
{ "cat" "dog" "ant" } " " join .
"cat dog ant"
NotesIf the
glue sequence is empty, this word calls
concat-as.
ErrorsThrows an error if one of the sequences in
seq contains elements not permitted in sequences of the same class as
glue.
See alsojoin-as,
concat,
concat-asDefinition