(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).
Source
(defn
disj!
"disj[oin]. Returns a transient set of the same (hashed/sorted) type, that\n does not contain key(s)."
([tcoll val] (-disjoin! tcoll val))
([tcoll val & vals]
(let
[ntcoll (-disjoin! tcoll val)]
(if vals (recur ntcoll (first vals) (next vals)) ntcoll))))