MCPcopy
hub / github.com/google/guava / atLeast

Method atLeast

guava/src/com/google/common/collect/Range.java:253–255  ·  view source on GitHub ↗

Returns a range that contains all values greater than or equal to {@code endpoint}. @since 14.0

(C endpoint)

Source from the content-addressed store, hash-verified

251 * @since 14.0
252 */
253 public static <C extends Comparable<?>> Range<C> atLeast(C endpoint) {
254 return create(Cut.belowValue(endpoint), Cut.aboveAll());
255 }
256
257 /**
258 * Returns a range from the given endpoint, which may be either inclusive (closed) or exclusive

Callers 15

downToMethod · 0.95
createMethod · 0.95
testExhaustiveMethod · 0.95
testFillHoleExactlyMethod · 0.95

Calls 3

createMethod · 0.95
belowValueMethod · 0.95
aboveAllMethod · 0.95