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)
| 168 | |
| 169 | |
| 170 | public static <C extends Comparable<?>> Range<C> closed(C lower, C upper) { |
| 171 | return create(Cut.belowValue(lower), Cut.aboveValue(upper)); |
| 172 | } |
| 173 | |
| 174 | /** |
| 175 | * Returns a range that contains all values greater than or equal to |
no test coverage detected