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

Method entryAt

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

Source from the content-addressed store, hash-verified

129}
130
131public IMapEntry entryAt(Object key){
132 if(key == null)
133 return hasNull ? (IMapEntry) MapEntry.create(null, nullValue) : null;
134 return (root != null) ? root.find(0, hash(key), key) : null;
135}
136
137public IPersistentMap assoc(Object key, Object val){
138 if(key == null) {

Callers

nothing calls this directly

Calls 3

createMethod · 0.95
hashMethod · 0.95
findMethod · 0.65

Tested by

no test coverage detected