Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/clojure/clojure
/ tryAdvance
Method
tryAdvance
src/jvm/clojure/lang/APersistentVector.java:302–309 ·
view source on GitHub ↗
(Consumer action)
Source
from the content-addressed store, hash-verified
300
}
301
302
@Override
303
public
boolean tryAdvance(Consumer action) {
304
if
(i < end) {
305
action.accept(nth(i++));
306
return
true;
307
}
308
return
false;
309
}
310
311
@Override
312
public
Spliterator trySplit() {
Callers
nothing calls this directly
Calls
2
nth
Method · 0.95
accept
Method · 0.45
Tested by
no test coverage detected