Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/BruceEckel/OnJava8-Examples
/ hasNext
Method
hasNext
collections/IterableClass.java:15–17 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
13
return
new
Iterator<String>() {
14
private
int
index = 0;
15
@Override
public
boolean hasNext() {
16
return
index < words.length;
17
}
18
@Override
19
public
String next() {
return
words[index++]; }
20
@Override
Callers
7
main
Method · 0.45
display
Method · 0.45
display
Method · 0.45
display
Method · 0.45
main
Method · 0.45
iterMotion
Method · 0.45
main
Method · 0.45
Calls
no outgoing calls
Tested by
no test coverage detected