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

Method valAt

src/jvm/clojure/lang/PersistentArrayMap.java:290–295  ·  view source on GitHub ↗
(Object key, Object notFound)

Source from the content-addressed store, hash-verified

288}
289
290final public Object valAt(Object key, Object notFound){
291 int i = indexOf(key);
292 if(i >= 0)
293 return array[i + 1];
294 return notFound;
295}
296
297public Object valAt(Object key){
298 return valAt(key, null);

Callers

nothing calls this directly

Calls 1

indexOfMethod · 0.95

Tested by

no test coverage detected