Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
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
containsKey
Method · 0.95
get
Method · 0.95
remove
Method · 0.95
higherEntry
Method · 0.95
higherKey
Method · 0.95
firstKey2
Method · 0.95
lastKey2
Method · 0.95
firstEntry
Method · 0.95
lastEntry
Method · 0.95
checkKeyBounds
Method · 0.95
Calls
2
tooLow
Method · 0.95
tooHigh
Method · 0.95
Tested by
no test coverage detected