(Cut<C> lowerBound, Cut<C> upperBound)
| 130 | } |
| 131 | |
| 132 | static <C extends Comparable<?>> Range<C> create(Cut<C> lowerBound, Cut<C> upperBound) { |
| 133 | return new Range<>(lowerBound, upperBound); |
| 134 | } |
| 135 | |
| 136 | /** |
| 137 | * Returns a range that contains all values strictly greater than {@code lower} and strictly less |
no outgoing calls
no test coverage detected