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

Method tailMap

lib/java/util/TreeMap.java:741–747  ·  view source on GitHub ↗
(K startKey)

Source from the content-addressed store, hash-verified

739 }
740
741 public SortedMap<K, V> tailMap(K startKey) {
742 checkRange(startKey);
743 if (hasEnd) {
744 return new SubMap<K, V>(startKey, backingMap, endKey);
745 }
746 return new SubMap<K, V>(startKey, backingMap);
747 }
748
749 @Override
750 public Collection<V> values() {

Callers

nothing calls this directly

Calls 1

checkRangeMethod · 0.95

Tested by

no test coverage detected