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

Method remove

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

Source from the content-addressed store, hash-verified

665 }
666
667 @Override
668 public V remove(Object key) {
669 if(key==null)
670 throw new NullPointerException("key null");
671 K k = (K)key;
672 return (!inBounds(k))? null : m.remove(k);
673 }
674
675 @Override
676 public int size() {

Callers 2

pollFirstEntryMethod · 0.95
pollLastEntryMethod · 0.95

Calls 2

inBoundsMethod · 0.95
removeMethod · 0.45

Tested by

no test coverage detected