Utility functions for the main honey.sql namespace.
Utility functions for the main honey.sql namespace.
(join separator coll)
(join separator xform coll)
More efficient implementation of clojure.string/join
. May accept a transducer
xform
to perform operations on each element before combining them together
into a string. Clojure-only, delegates to clojure.string/join
on other
platforms.
More efficient implementation of `clojure.string/join`. May accept a transducer `xform` to perform operations on each element before combining them together into a string. Clojure-only, delegates to `clojure.string/join` on other platforms.
(str)
(str a)
(str a b)
(str a b c)
(str a b c d)
(str a b c d e)
(str a b c d e & more)
More efficient implementation of clojure.core/str
because it has more
non-variadic arities. Optimization is Clojure-only, on other platforms it
reverts back to clojure.core/str
.
More efficient implementation of `clojure.core/str` because it has more non-variadic arities. Optimization is Clojure-only, on other platforms it reverts back to `clojure.core/str`.
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close