function | since v0.0-1211 | clojure.core/disj! | Edit |
(disj! tcoll val)
(disj! tcoll val & vals)
disj[oin]. Returns a transient set of the same (hashed/sorted) type, that does not contain key(s).
(defn disj!
([tcoll val]
(-disjoin! tcoll val))
([tcoll val & vals]
(let [ntcoll (-disjoin! tcoll val)]
(if vals
(recur ntcoll (first vals) (next vals))
ntcoll))))