io.aviso.toolchest.collections
added in 0.1.1
Some useful functions related to Clojure collections.
hash-map-by
(hash-map-by key-fn values)
(hash-map-by key-fn value-fn values)
Constructs a hash map from the supplied values.
- key-fn
- Passed a value and extracts the key for that value.
- value-fn
- Passed a value and converts it to be a map value. If omitted, then the values provided are used as-is in the output map.
- values
- Seq of values from which map keys and values will be extracted.
into+
added in 0.1.4
(into+ & seqs)
Like clojure.core/into but accepts any number of seqs to combine.
pretty-print-brief
(pretty-print-brief object)
(pretty-print-brief object print-level print-length)
Like pretty-print, but prints the object more briefly, with limits on level and length.
Returns the printed object as a string.
update-if?
added in 0.1.4
(update-if? m k f & args)
Updates a key in an map (or other associative structure) only if it exists, otherwise returns the map unchanged.