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

Method containsKey

src/jvm/clojure/lang/APersistentVector.java:387–392  ·  view source on GitHub ↗
(Object key)

Source from the content-addressed store, hash-verified

385}
386
387public boolean containsKey(Object key){
388 if(!(Util.isInteger(key)))
389 return false;
390 int i = ((Number) key).intValue();
391 return i >= 0 && i < count();
392}
393
394public IMapEntry entryAt(Object key){
395 if(Util.isInteger(key))

Callers

nothing calls this directly

Calls 3

isIntegerMethod · 0.95
countMethod · 0.65
intValueMethod · 0.45

Tested by

no test coverage detected