(Cut<C> lowerBound, Cut<C> upperBound)
| 140 | static final Ordering<Range<?>> RANGE_LEX_ORDERING = new RangeLexOrdering(); |
| 141 | |
| 142 | static <C extends Comparable<?>> Range<C> create(Cut<C> lowerBound, Cut<C> upperBound) { |
| 143 | return new Range<C>(lowerBound, upperBound); |
| 144 | } |
| 145 | |
| 146 | /** |
| 147 | * Returns a range that contains all values strictly greater than {@code |
no outgoing calls
no test coverage detected