Returns a range that contains all values greater than or equal to lower and strictly less than upper. @throws IllegalArgumentException if lower is greater than upper @since 14.0
(C lower, C upper)
| 182 | |
| 183 | |
| 184 | public static <C extends Comparable<?>> Range<C> closedOpen(C lower, C upper) { |
| 185 | return create(Cut.belowValue(lower), Cut.belowValue(upper)); |
| 186 | } |
| 187 | |
| 188 | /** |
| 189 | * Returns a range that contains all values strictly greater than {@code |
nothing calls this directly
no test coverage detected