Returns a range that contains all values greater than or equal to {@code endpoint}. @since 14.0
(C endpoint)
| 251 | * @since 14.0 |
| 252 | */ |
| 253 | public static <C extends Comparable<?>> Range<C> atLeast(C endpoint) { |
| 254 | return create(Cut.belowValue(endpoint), Cut.aboveAll()); |
| 255 | } |
| 256 | |
| 257 | /** |
| 258 | * Returns a range from the given endpoint, which may be either inclusive (closed) or exclusive |