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

Method minimum

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

Source from the content-addressed store, hash-verified

4370 }
4371
4372 static <K, V> Entry<K, V> minimum(Entry<K, V> x) {
4373 while (x.left != null) {
4374 x = x.left;
4375 }
4376 return x;
4377 }
4378
4379 static <K, V> Entry<K, V> predecessor(Entry<K, V> x) {
4380 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