Returns everything above the endpoint relative to the specified comparator, with the specified endpoint behavior.
(Comparator<? super T> comparator, @Nullable T endpoint, BoundType boundType)
| 69 | */ |
| 70 | |
| 71 | static <T> GeneralRange<T> downTo(Comparator<? super T> comparator, @Nullable T endpoint, BoundType boundType) { |
| 72 | return new GeneralRange<T>(comparator, true, endpoint, boundType, false, null, OPEN); |
| 73 | } |
| 74 | |
| 75 | /** |
| 76 | * Returns everything below the endpoint relative to the specified comparator, with the specified |