MCPcopy Index your code
hub / github.com/apache/groovy / getFrom

Method getFrom

src/main/java/groovy/lang/IntRange.java:338–344  ·  view source on GitHub ↗

{@inheritDoc}

()

Source from the content-addressed store, hash-verified

336 * {@inheritDoc}
337 */
338 @Override
339 public Integer getFrom() {
340 if (from <= to) {
341 return (inclusiveLeft == null || inclusiveLeft) ? from : from + 1;
342 }
343 return (inclusiveRight == null || inclusiveRight) ? to : to + 1;
344 }
345
346 /**
347 * {@inheritDoc}

Callers 10

byMethod · 0.95
getFromIntMethod · 0.95
containsWithinBoundsMethod · 0.95
getMethod · 0.95
sizeMethod · 0.95
subListMethod · 0.95
containsMethod · 0.95
containsAllMethod · 0.95
stepMethod · 0.95
hashCodeMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected