Returns the whole range relative to the specified comparator.
(Comparator<? super T> comparator)
| 60 | */ |
| 61 | |
| 62 | static <T> GeneralRange<T> all(Comparator<? super T> comparator) { |
| 63 | return new GeneralRange<T>(comparator, false, null, OPEN, false, null, OPEN); |
| 64 | } |
| 65 | |
| 66 | /** |
| 67 | * Returns everything above the endpoint relative to the specified comparator, with the specified |
no outgoing calls
no test coverage detected