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

Method next

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

Source from the content-addressed store, hash-verified

239 }
240
241 public Long next() {
242 if(array != null && i < array.length)
243 return Long.valueOf(array[i++]);
244 throw new java.util.NoSuchElementException();
245 }
246
247 public void remove() {
248 throw new UnsupportedOperationException("remove() not supported");

Callers

nothing calls this directly

Calls 1

valueOfMethod · 0.45

Tested by

no test coverage detected