chickadee » persistent-hash-map » map-delete

(map-delete map key [key ...])procedure

Returns map without the given keys. Non-existing keys will be ignored.

Example:

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