MCPcopy Index your code
hub / github.com/davidgiven/luje / maximum

Method maximum

lib/java/util/TreeMap.java:1421–1429  ·  view source on GitHub ↗
(Node<K, V> x)

Source from the content-addressed store, hash-verified

1419 }
1420
1421 static <K,V> Node<K, V> maximum(Node<K, V> x) {
1422 if (x == null) {
1423 return null;
1424 }
1425 while (x.right != null) {
1426 x = x.right;
1427 }
1428 return x;
1429 }
1430
1431 /**
1432 * Maps the specified key to the specified value.

Callers 3

lastKeyMethod · 0.95
lastKeyMethod · 0.80
sizeMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected