Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
Indexed
MCP
copy
Index your code
hub
/
github.com/jankotek/mapdb
/ get
Method
get
src/main/java/org/mapdb/BTreeMapJava.java:654–659 ·
view source on GitHub ↗
(Object key)
Source
from the content-addressed store, hash-verified
652
}
653
654
@Override
655
public
V get(Object key) {
656
if
(key == null) throw
new
NullPointerException();
657
K k = (K)key;
658
return
((!inBounds(k)) ? null : m.get(k));
659
}
660
661
@Override
662
public
V put(K key, V value) {
Callers
nothing calls this directly
Calls
2
inBounds
Method · 0.95
get
Method · 0.65
Tested by
no test coverage detected