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

Method atLeast

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

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

(C endpoint)

Source from the content-addressed store, hash-verified

269 * @since 14.0
270 */
271 public static <C extends Comparable<?>> Range<C> atLeast(C endpoint) {
272 return create(Cut.belowValue(endpoint), Cut.<C>aboveAll());
273 }
274
275 /**
276 * Returns a range from the given endpoint, which may be either inclusive

Callers 2

downToMethod · 0.95
createMethod · 0.95

Calls 3

createMethod · 0.95
belowValueMethod · 0.95
aboveAllMethod · 0.95

Tested by

no test coverage detected