MCPcopy 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

ceilingKeyMethod · 0.95
firstKeyMethod · 0.95

Calls 2

inBoundsMethod · 0.95
firstKey2Method · 0.65

Tested by

no test coverage detected