(entry-at m k)
Returns the map-entry mapped to key or nil if key not present.
Returns the map-entry mapped to key or nil if key not present.
(fast-assoc a k v)
Like assoc but only takes one kv pair. Slightly faster.
Like assoc but only takes one kv pair. Slightly faster.
(fast-map-merge x y)
Returns a map that consists of the second of the maps assoc-ed onto the first. If a key occurs in more than one map, the mapping from te latter (left-to-right) will be the mapping in the result.
Returns a map that consists of the second of the maps assoc-ed onto the first. If a key occurs in more than one map, the mapping from te latter (left-to-right) will be the mapping in the result.
(rmerge! l r)
Returns a transient map that consists of the second of the maps assoc-ed onto the first. If a key occurs in more than one map, the mapping from te latter (left-to-right) will be the mapping in the result.
Returns a transient map that consists of the second of the maps assoc-ed onto the first. If a key occurs in more than one map, the mapping from te latter (left-to-right) will be the mapping in the result.
(val-at m k)
(val-at m k nf)
Returns the value mapped to key or nil if key not present.
Returns the value mapped to key or nil if key not present.
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close