(int element)
| 870 | final BitSet bs) { |
| 871 | class ReferenceSet { |
| 872 | int lower(int element) { |
| 873 | return ascending ? |
| 874 | lowerAscending(element) : higherAscending(element); |
| 875 | } |
| 876 | int floor(int element) { |
| 877 | return ascending ? |
| 878 | floorAscending(element) : ceilingAscending(element); |
no test coverage detected