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

Method next

src/main/java/groovy/util/Iterators.java:83–91  ·  view source on GitHub ↗

{@inheritDoc}

()

Source from the content-addressed store, hash-verified

81
82 /** {@inheritDoc} */
83 @Override
84 public T next() {
85 if (first) {
86 first = false;
87 } else {
88 next = advance.apply(next);
89 }
90 return next;
91 }
92
93 /** {@inheritDoc} */
94 @Override

Callers 7

loadFirstMethod · 0.45
loadNextMethod · 0.45
getMethod · 0.45
depthFirstRestMethod · 0.45
localTextMethod · 0.45
getDirectChildrenMethod · 0.45
writeConfigMethod · 0.45

Calls 1

applyMethod · 0.65

Tested by

no test coverage detected