MCPcopy Create free account
hub / github.com/antlr/codebuff / open

Method open

corpus/java/training/guava/collect/Range.java:157–159  ·  view source on GitHub ↗

Returns a range that contains all values strictly greater than lower and strictly less than upper. @throws IllegalArgumentException if lower is greater than or equal to upper @since 14.0

(C lower, C upper)

Source from the content-addressed store, hash-verified

155 * @since 14.0
156 */
157 public static <C extends Comparable<?>> Range<C> open(C lower, C upper) {
158 return create(Cut.aboveValue(lower), Cut.belowValue(upper));
159 }
160
161 /**
162 * Returns a range that contains all values greater than or equal to

Callers

nothing calls this directly

Calls 3

createMethod · 0.95
aboveValueMethod · 0.95
belowValueMethod · 0.95

Tested by

no test coverage detected