Returns a new collection in which the entries corresponding to the
given keys are removed. Each type of collection can have specific
restrictions on the possible keys.
(defmulti dissoc
"Returns a new collection in which the entries corresponding to the
given keys are removed. Each type of collection can have specific
restrictions on the possible keys."
{:arglists '([coll & keys])}
(fn [coll & keys] (type coll)))
Comments top
No comments for dissoc. Log in to add a comment.