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

Method dissoc

src/jvm/clojure/lang/RT.java:908–912  ·  view source on GitHub ↗
(Object coll, Object key)

Source from the content-addressed store, hash-verified

906}
907
908static public Object dissoc(Object coll, Object key) {
909 if(coll == null)
910 return null;
911 return ((IPersistentMap) coll).without(key);
912}
913
914static public Object nth(Object coll, int n){
915 if(coll instanceof Indexed)

Callers 2

invokeMethod · 0.95
elideMetaMethod · 0.95

Calls 1

withoutMethod · 0.65

Tested by

no test coverage detected