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

Method next

src/jvm/clojure/lang/ArrayIter.java:266–270  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

264 }
265
266 public Boolean next() {
267 if(array != null && i < array.length)
268 return Boolean.valueOf(array[i++]);
269 throw new java.util.NoSuchElementException();
270 }
271
272 public void remove() {
273 throw new UnsupportedOperationException("remove() not supported");

Callers

nothing calls this directly

Calls 1

valueOfMethod · 0.45

Tested by

no test coverage detected