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

Method headMap

Ports/CLDC11/src/java/util/TreeMap.java:5604–5608  ·  view source on GitHub ↗
(K end, boolean inclusive)

Source from the content-addressed store, hash-verified

5602 ///
5603 /// - java.util.NavigableMap#headMap(Object, boolean)
5604 public NavigableMap<K, V> headMap(K end, boolean inclusive) {
5605 // check for error
5606 keyCompare(end, end);
5607 return new AscendingSubMap<K, V>(this, end, inclusive);
5608 }
5609
5610 /// {@inheritDoc}
5611 ///

Callers

nothing calls this directly

Calls 1

keyCompareMethod · 0.95

Tested by

no test coverage detected