Returns a range that contains all values strictly less than endpoint. @since 14.0
(C endpoint)
| 227 | |
| 228 | |
| 229 | public static <C extends Comparable<?>> Range<C> lessThan(C endpoint) { |
| 230 | return create(Cut.<C>belowAll(), Cut.belowValue(endpoint)); |
| 231 | } |
| 232 | |
| 233 | /** |
| 234 | * Returns a range that contains all values less than or equal to |
no test coverage detected