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

Method containsKey

src/jvm/clojure/lang/PersistentHashMap.java:125–129  ·  view source on GitHub ↗
(Object key)

Source from the content-addressed store, hash-verified

123}
124
125public boolean containsKey(Object key){
126 if(key == null)
127 return hasNull;
128 return (root != null) ? root.find(0, hash(key), key, NOT_FOUND) != NOT_FOUND : false;
129}
130
131public IMapEntry entryAt(Object key){
132 if(key == null)

Callers 1

assocExMethod · 0.95

Calls 2

hashMethod · 0.95
findMethod · 0.65

Tested by

no test coverage detected