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

Method tailMap

Ports/CLDC11/src/java/util/TreeMap.java:5619–5623  ·  view source on GitHub ↗
(K start, boolean inclusive)

Source from the content-addressed store, hash-verified

5617 ///
5618 /// - java.util.NavigableMap#tailMap(Object, boolean)
5619 public NavigableMap<K, V> tailMap(K start, boolean inclusive) {
5620 // check for error
5621 keyCompare(start, start);
5622 return new AscendingSubMap<K, V>(start, inclusive, this);
5623 }
5624
5625 /// Returns a sorted map over a range of this sorted map with all keys
5626 /// greater than or equal to the specified `startKey` and less than the

Callers

nothing calls this directly

Calls 1

keyCompareMethod · 0.95

Tested by

no test coverage detected