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