Returns a range that contains all values strictly greater than lower and strictly less than upper. @throws IllegalArgumentException if lower is greater than or equal to upper @since 14.0
(C lower, C upper)
| 154 | |
| 155 | |
| 156 | public static <C extends Comparable<?>> Range<C> open(C lower, C upper) { |
| 157 | return create(Cut.aboveValue(lower), Cut.belowValue(upper)); |
| 158 | } |
| 159 | |
| 160 | /** |
| 161 | * Returns a range that contains all values greater than or equal to |
nothing calls this directly
no test coverage detected