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

Method tooLow

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

Source from the content-addressed store, hash-verified

1018
1019
1020 private boolean tooLow(K key) {
1021 if (lo != null) {
1022 int c = m.comparator().compare(key, lo);
1023 if (c < 0 || (c == 0 && !loInclusive))
1024 return true;
1025 }
1026 return false;
1027 }
1028
1029 private boolean tooHigh(K key) {
1030 if (hi != null) {

Callers 7

lowerEntryMethod · 0.95
lowerKeyMethod · 0.95
floorEntryMethod · 0.95
floorKeyMethod · 0.95
ceilingEntryMethod · 0.95
ceilingKeyMethod · 0.95
inBoundsMethod · 0.95

Calls 2

compareMethod · 0.65
comparatorMethod · 0.45

Tested by

no test coverage detected