ruricolist / serapeum

Utilities beyond Alexandria
MIT License
415 stars 41 forks source link

Add seq-join #141

Open ruricolist opened 1 year ago

ruricolist commented 1 year ago

Takes a sequence of sequences and returns a new sequences of a given type containing the elements of all the sequences.

Essentially like concatenate, but without the limitation that the number of sequences be < call-arguments-limit.

(seq-join 'vector '((1 2 3) #(4 5 6))) => #(1 2 3 4 5 6)