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

Method next

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

Source from the content-addressed store, hash-verified

164 }
165
166 public Long next() {
167 if(array != null && i < array.length)
168 return Long.valueOf(array[i++]);
169 throw new java.util.NoSuchElementException();
170 }
171
172 public void remove() {
173 throw new UnsupportedOperationException("remove() not supported");

Callers

nothing calls this directly

Calls 1

valueOfMethod · 0.45

Tested by

no test coverage detected