Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/clojure/clojure
/ next
Method
next
src/jvm/clojure/lang/APersistentVector.java:219–224 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
217
}
218
219
public
Object next(){
220
if
(nexti < count())
221
return
nth(nexti++);
222
else
223
throw
new
NoSuchElementException();
224
}
225
226
public
boolean hasPrevious(){
227
return
nexti > 0;
Callers
nothing calls this directly
Calls
2
nth
Method · 0.95
count
Method · 0.65
Tested by
no test coverage detected