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

Method tooHigh

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

Source from the content-addressed store, hash-verified

1027 }
1028
1029 private boolean tooHigh(K key) {
1030 if (hi != null) {
1031 int c = m.comparator().compare(key, hi);
1032 if (c > 0 || (c == 0 && !hiInclusive))
1033 return true;
1034 }
1035 return false;
1036 }
1037
1038 private boolean inBounds(K key) {
1039 return !tooLow(key) && !tooHigh(key);

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