disj[oin]. Returns a new set of the same (hashed/sorted) type, that does not contain key(s).
user=> (disj #{1 2 3}) ; disjoin nothing #{1 2 3} user=> (disj #{1 2 3} 2) ; disjoin 2 #{1 3} user=> (disj #{1 2 3} 4) ; disjoin non-existent item #{1 2 3} user=> (disj #{1 2 3} 1 3) ; disjoin several items at once #{2}
user=> (apply disj #{1 2 3} [1 3]) ; disjoin keys in a coll #{2}
dissoc[iate]. Returns a new map of the same (hashed/sorted) type, that does not contain a mapping ...
disj[oin]. Returns a transient set of the same (hashed/sorted) type, that does not contain key(s).
Return a set that is the first set without elements of the remaining sets
conj[oin]. Returns a new collection with the xs 'added'. (conj nil item) returns (item). (co...
disj