MCPcopy Create free account
hub / github.com/codenameone/CodenameOne / tailMap

Method tailMap

Ports/CLDC11/src/java/util/TreeMap.java:915–921  ·  view source on GitHub ↗
(K startKey)

Source from the content-addressed store, hash-verified

913 }
914
915 public SortedMap<K, V> tailMap(K startKey) {
916 checkRange(startKey);
917 if (hasEnd) {
918 return new SubMap<K, V>(startKey, backingMap, endKey);
919 }
920 return new SubMap<K, V>(startKey, backingMap);
921 }
922
923 @Override
924 public Collection<V> values() {

Callers

nothing calls this directly

Calls 1

checkRangeMethod · 0.95

Tested by

no test coverage detected