Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
Index your code
hub
/
github.com/jankotek/mapdb
/ firstKey2
Method
firstKey2
src/main/java/org/mapdb/BTreeMapJava.java:849–855 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
847
848
849
public
K firstKey2() {
850
K k =
851
lo==null ?
852
m.firstKey2():
853
m.findHigherKey(lo, loInclusive);
854
return
k!=null && inBounds(k)? k : null;
855
}
856
857
public
K lastKey2() {
858
K k =
Callers
2
ceilingKey
Method · 0.95
firstKey
Method · 0.95
Calls
2
inBounds
Method · 0.95
firstKey2
Method · 0.65
Tested by
no test coverage detected