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

Method floor

src/test/java/org/mapdb/BTreeSet2Test.java:876–879  ·  view source on GitHub ↗
(int element)

Source from the content-addressed store, hash-verified

874 lowerAscending(element) : higherAscending(element);
875 }
876 int floor(int element) {
877 return ascending ?
878 floorAscending(element) : ceilingAscending(element);
879 }
880 int ceiling(int element) {
881 return ascending ?
882 ceilingAscending(element) : floorAscending(element);

Callers 7

checkMethod · 0.95
testFloorMethod · 0.45
testFloorMethod · 0.45
testFloorMethod · 0.45
testDescendingFloorMethod · 0.45

Calls 2

floorAscendingMethod · 0.95
ceilingAscendingMethod · 0.95

Tested by

no test coverage detected