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

Method valAt

src/jvm/clojure/lang/PersistentHashMap.java:151–155  ·  view source on GitHub ↗
(Object key, Object notFound)

Source from the content-addressed store, hash-verified

149}
150
151public Object valAt(Object key, Object notFound){
152 if(key == null)
153 return hasNull ? nullValue : notFound;
154 return root != null ? root.find(0, hash(key), key, notFound) : notFound;
155}
156
157public Object valAt(Object key){
158 return valAt(key, null);

Callers

nothing calls this directly

Calls 2

hashMethod · 0.95
findMethod · 0.65

Tested by

no test coverage detected