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

Method remove

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

Source from the content-addressed store, hash-verified

714 }
715
716 @SuppressWarnings("unchecked")
717 @Override
718 public V remove(Object key) {
719 if (isInRange((K) key)) {
720 return backingMap.remove(key);
721 }
722 return null;
723 }
724
725 public SortedMap<K, V> subMap(K startKey, K endKey) {
726 checkRange(startKey);

Callers

nothing calls this directly

Calls 2

isInRangeMethod · 0.95
removeMethod · 0.65

Tested by

no test coverage detected