MCPcopy Create free account
hub / github.com/davidgiven/luje / containsKey

Method containsKey

lib/java/util/TreeMap.java:462–469  ·  view source on GitHub ↗
(Object key)

Source from the content-addressed store, hash-verified

460 }
461
462 @SuppressWarnings("unchecked")
463 @Override
464 public boolean containsKey(Object key) {
465 if (isInRange((K) key)) {
466 return backingMap.containsKey(key);
467 }
468 return false;
469 }
470
471 @Override
472 public void clear() {

Callers

nothing calls this directly

Calls 2

isInRangeMethod · 0.95
containsKeyMethod · 0.65

Tested by

no test coverage detected