chickadee » persistent-hash-map » map-add

(map-add map key value [key value ...])procedure

Returns map with the given key value pairs added. Existing keys will be overridden.

Example:

(map-add (persistent-map 'foo 1) 'foo 2 'bar 3)
=> #<persistent-hash-map (bar . 3) (foo . 2)>