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

Method entryAt

src/jvm/clojure/lang/PersistentArrayMap.java:220–225  ·  view source on GitHub ↗
(Object key)

Source from the content-addressed store, hash-verified

218}
219
220public IMapEntry entryAt(Object key){
221 int i = indexOf(key);
222 if(i >= 0)
223 return (IMapEntry) MapEntry.create(array[i],array[i+1]);
224 return null;
225}
226
227public IPersistentMap assocEx(Object key, Object val) {
228 int i = indexOf(key);

Callers

nothing calls this directly

Calls 2

indexOfMethod · 0.95
createMethod · 0.95

Tested by

no test coverage detected