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

Method maximum

Ports/CLDC11/src/java/util/TreeMap.java:4365–4370  ·  view source on GitHub ↗
(Entry<K, V> x)

Source from the content-addressed store, hash-verified

4363 }
4364
4365 static <K, V> Entry<K, V> maximum(Entry<K, V> x) {
4366 while (x.right != null) {
4367 x = x.right;
4368 }
4369 return x;
4370 }
4371
4372 static <K, V> Entry<K, V> minimum(Entry<K, V> x) {
4373 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