Returns a range that contains all values greater than or equal to endpoint. @since 14.0
(C endpoint)
| 269 | * @since 14.0 |
| 270 | */ |
| 271 | public static <C extends Comparable<?>> Range<C> atLeast(C endpoint) { |
| 272 | return create(Cut.belowValue(endpoint), Cut.<C>aboveAll()); |
| 273 | } |
| 274 | |
| 275 | /** |
| 276 | * Returns a range from the given endpoint, which may be either inclusive |
no test coverage detected