(@Nullable T t)
| 148 | } |
| 149 | |
| 150 | boolean tooLow(@Nullable T t) { |
| 151 | if (!hasLowerBound()) { |
| 152 | return false; |
| 153 | } |
| 154 | T lbound = getLowerEndpoint(); |
| 155 | int cmp = comparator.compare(t, lbound); |
| 156 | return cmp < 0 | (cmp == 0 & getLowerBoundType() == OPEN); |
| 157 | } |
| 158 | |
| 159 | boolean tooHigh(@Nullable T t) { |
| 160 | if (!hasUpperBound()) { |
no test coverage detected