disj

functionsince v0.0-927 clojure.core/disjEdit
(disj coll)
(disj coll k)
(disj coll k & ks)

Details:

disj(oin). Returns a new set of the same (hashed/sorted) type, that does not contain key(s).


See Also:


Source docstring:
disj[oin]. Returns a new set of the same (hashed/sorted) type, that
does not contain key(s).
Source code @ clojurescript:src/main/cljs/cljs/core.cljs
(defn disj
  ([coll] coll)
  ([coll k]
    (when-not (nil? coll)
      (-disjoin coll k)))
  ([coll k & ks]
    (when-not (nil? coll)
      (let [ret (disj coll k)]
        (if ks
          (recur ret (first ks) (next ks))
          ret)))))