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

Method minimum

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

Source from the content-addressed store, hash-verified

4354 }
4355
4356 static <K, V> Entry<K, V> minimum(Entry<K, V> x) {
4357 while (x.left != null) {
4358 x = x.left;
4359 }
4360 return x;
4361 }
4362
4363 static <K, V> Entry<K, V> predecessor(Entry<K, V> x) {
4364 if (x.left != null) {

Callers 10

containsValueMethod · 0.95
findSmallestEntryMethod · 0.95
firstKeyMethod · 0.95
successorMethod · 0.95
firstKeyMethod · 0.45
sizeMethod · 0.45
iteratorMethod · 0.45
iteratorMethod · 0.45
iteratorMethod · 0.45
AbstractMapIteratorMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected