MCPcopy Index your code
hub / github.com/jankotek/mapdb / tooLow

Method tooLow

src/main/java/org/mapdb/BTreeMapJava.java:1463–1470  ·  view source on GitHub ↗
(K key)

Source from the content-addressed store, hash-verified

1461
1462
1463 private boolean tooLow(K key) {
1464 if (lo != null) {
1465 int c = m.comparator().compare(key, lo);
1466 if (c < 0 || (c == 0 && !loInclusive))
1467 return true;
1468 }
1469 return false;
1470 }
1471
1472 private boolean tooHigh(K key) {
1473 if (hi != null) {

Callers 4

higherEntryMethod · 0.95
ceilingEntryMethod · 0.95
floorEntryMethod · 0.95
inBoundsMethod · 0.95

Calls 2

compareMethod · 0.65
comparatorMethod · 0.45

Tested by

no test coverage detected