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

Method maximum

vm/JavaAPI/src/java/util/TreeMap.java:4349–4354  ·  view source on GitHub ↗
(Entry<K, V> x)

Source from the content-addressed store, hash-verified

4347 }
4348
4349 static <K, V> Entry<K, V> maximum(Entry<K, V> x) {
4350 while (x.right != null) {
4351 x = x.right;
4352 }
4353 return x;
4354 }
4355
4356 static <K, V> Entry<K, V> minimum(Entry<K, V> x) {
4357 while (x.left != null) {

Callers 5

findBiggestEntryMethod · 0.95
lastKeyMethod · 0.95
predecessorMethod · 0.95
lastKeyMethod · 0.45
sizeMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected