useful to have in core?
(defn- string-builder-rf
([] (StringBuilder.))
([^StringBuilder ret] (.toString ret))
([^StringBuilder acc in] (.append acc in)))
or perhaps some form of into-str
? perhaps clojure.string/into
?(although it's thematically more similar to sequence
than into
)