Returns a range that contains all values greater than or equal to endpoint. @since 14.0
(C endpoint)
| 282 | |
| 283 | |
| 284 | public static <C extends Comparable<?>> Range<C> atLeast(C endpoint) { |
| 285 | return create(Cut.belowValue(endpoint), Cut.<C>aboveAll()); |
| 286 | } |
| 287 | |
| 288 | /** |
| 289 | * Returns a range from the given endpoint, which may be either inclusive |
no test coverage detected