Returns a string of all elements in 'sequence', separated by
'separator'. Like Perl's 'join'.
(defn str-join "Returns a string of all elements in 'sequence', separated by 'separator'. Like Perl's 'join'." [separator sequence] (apply str (interpose separator sequence)))
Comments top
No comments for str-join. Log in to add a comment.