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

Method inBounds

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

Source from the content-addressed store, hash-verified

1036 }
1037
1038 private boolean inBounds(K key) {
1039 return !tooLow(key) && !tooHigh(key);
1040 }
1041
1042 private void checkKeyBounds(K key) throws IllegalArgumentException {
1043 if (key == null)

Callers 10

containsKeyMethod · 0.95
getMethod · 0.95
removeMethod · 0.95
higherEntryMethod · 0.95
higherKeyMethod · 0.95
firstKey2Method · 0.95
lastKey2Method · 0.95
firstEntryMethod · 0.95
lastEntryMethod · 0.95
checkKeyBoundsMethod · 0.95

Calls 2

tooLowMethod · 0.95
tooHighMethod · 0.95

Tested by

no test coverage detected