interpose
builtin-function
(interpose separator seq) (interpose separator)
(interpose separator seq)
(interpose separator)
Returns a new list with separator inserted between the items of seq. The second form returns a transducer.
separator
seq
make-html > (interpose '- '(a b c d)) it: (a - b - c - d)