()
| 889 | return ascending ? firstAscending() : lastAscending(); |
| 890 | } |
| 891 | int last() { |
| 892 | return ascending ? lastAscending() : firstAscending(); |
| 893 | } |
| 894 | int lowerAscending(int element) { |
| 895 | return floorAscending(element - 1); |
| 896 | } |
no test coverage detected