Returns a range that contains all values greater than or equal to lower and less than or equal to upper. @throws IllegalArgumentException if lower is greater than upper @since 14.0
(C lower, C upper)
| 167 | * @since 14.0 |
| 168 | */ |
| 169 | public static <C extends Comparable<?>> Range<C> closed(C lower, C upper) { |
| 170 | return create(Cut.belowValue(lower), Cut.aboveValue(upper)); |
| 171 | } |
| 172 | |
| 173 | /** |
| 174 | * Returns a range that contains all values greater than or equal to |
no test coverage detected