Utility functions for the main honey.sql namespace.
Utility functions for the main honey.sql namespace.
(into* to from1)(into* to from1 from2)(into* to from1 from2 from3)(into* to from1 from2 from3 from4)An extension of clojure.core/into that accepts multiple "from" arguments.
Doesn't support xform.
An extension of `clojure.core/into` that accepts multiple "from" arguments. Doesn't support `xform`.
(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.
(split-by-separator s sep)More efficient implementation of clojure.string/split for cases when a
literal string (not regex) is used as a separator, and for cases where the
separator is not present in the haystack at all.
More efficient implementation of `clojure.string/split` for cases when a literal string (not regex) is used as a separator, and for cases where the separator is not present in the haystack at all.
(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 builds & hosts documentation for Clojure/Script libraries
| Ctrl+k | Jump to recent docs |
| ← | Move to previous article |
| → | Move to next article |
| Ctrl+/ | Jump to the search field |