MCPcopy Create free account
hub / github.com/davidgiven/luje / minimum

Method minimum

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

Source from the content-addressed store, hash-verified

1409 }
1410
1411 static <K,V> Node<K, V> minimum(Node<K, V> x) {
1412 if (x == null) {
1413 return null;
1414 }
1415 while (x.left != null) {
1416 x = x.left;
1417 }
1418 return x;
1419 }
1420
1421 static <K,V> Node<K, V> maximum(Node<K, V> x) {
1422 if (x == null) {

Callers 10

cloneMethod · 0.95
successorMethod · 0.95
containsValueMethod · 0.95
firstKeyMethod · 0.95
AbstractMapIteratorMethod · 0.80
firstKeyMethod · 0.80
sizeMethod · 0.80
iteratorMethod · 0.80
iteratorMethod · 0.80
iteratorMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected