Created
June 3, 2020 22:16
-
-
Save dpsutton/d3043cdb3d30bc524a38ca6131f02a68 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; thanks ghadi from #clojure.beginners | |
(defn into-str | |
"reduce coll into a String, given a transducer" | |
[xf coll] | |
(transduce (comp xf (map str)) | |
(fn | |
([] (StringBuilder.)) | |
([^StringBuilder sb] (.toString sb)) | |
([^StringBuilder sb s] (.append sb ^String s))) | |
coll)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment