MCPcopy Index your code
hub / github.com/clojure/clojure / disjoin

Method disjoin

src/jvm/clojure/lang/PersistentTreeSet.java:61–65  ·  view source on GitHub ↗
(Object key)

Source from the content-addressed store, hash-verified

59}
60
61public IPersistentSet disjoin(Object key) {
62 if(contains(key))
63 return new PersistentTreeSet(meta(),impl.without(key));
64 return this;
65}
66
67public IPersistentSet cons(Object o){
68 if(contains(o))

Callers

nothing calls this directly

Calls 3

metaMethod · 0.95
containsMethod · 0.65
withoutMethod · 0.65

Tested by

no test coverage detected