Returns a range that contains all values strictly greater than lower and less than or equal to upper. @throws IllegalArgumentException if lower is greater than upper @since 14.0
(C lower, C upper)
| 196 | |
| 197 | |
| 198 | public static <C extends Comparable<?>> Range<C> openClosed(C lower, C upper) { |
| 199 | return create(Cut.aboveValue(lower), Cut.aboveValue(upper)); |
| 200 | } |
| 201 | |
| 202 | /** |
| 203 | * Returns a range that contains any value from {@code lower} to {@code |
nothing calls this directly
no test coverage detected