MCPcopy Index your code
hub / github.com/clojure/clojure / next

Method next

src/jvm/clojure/lang/PersistentVector.java:303–313  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

301 }
302
303 public Object next(){
304 if(i < end) {
305 if(i-base == 32){
306 array = arrayFor(i);
307 base += 32;
308 }
309 return array[i++ & 0x01f];
310 } else {
311 throw new NoSuchElementException();
312 }
313 }
314
315 public void remove(){
316 throw new UnsupportedOperationException();

Callers

nothing calls this directly

Calls 1

arrayForMethod · 0.95

Tested by

no test coverage detected