io.aviso.toolchest.collections

added in 0.1.1

Some useful functions related to Clojure collections.

*default-brief-length*

dynamic

Default for pretty-print-brief when setting the maximum print length.

*default-brief-level*

dynamic

Default for pretty-print-brief when setting the maximium print level.

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

(pretty-print object)

Pretty-prints the supplied object to a returned string.

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.