Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
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
loadFirst
Method · 0.45
loadNext
Method · 0.45
get
Method · 0.45
depthFirstRest
Method · 0.45
localText
Method · 0.45
getDirectChildren
Method · 0.45
writeConfig
Method · 0.45
Calls
1
apply
Method · 0.65
Tested by
no test coverage detected