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

Method atLeast

output/java_guava/1.4.16/Range.java:284–286  ·  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

282
283
284 public static <C extends Comparable<?>> Range<C> atLeast(C endpoint) {
285 return create(Cut.belowValue(endpoint), Cut.<C>aboveAll());
286 }
287
288 /**
289 * 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