MCPcopy Index your code
hub / github.com/jankotek/mapdb / containsKey

Method containsKey

src/main/java/org/mapdb/BTreeMapJava.java:647–652  ·  view source on GitHub ↗
(Object key)

Source from the content-addressed store, hash-verified

645/* ---------------- Map API methods -------------- */
646
647 @Override
648 public boolean containsKey(Object key) {
649 if (key == null) throw new NullPointerException();
650 K k = (K)key;
651 return inBounds(k) && m.containsKey(k);
652 }
653
654 @Override
655 public V get(Object key) {

Callers 2

containsMethod · 0.45
containsKeyMethod · 0.45

Calls 1

inBoundsMethod · 0.95

Tested by

no test coverage detected