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

Method next

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

Source from the content-addressed store, hash-verified

91 }
92
93 public Long next() {
94 if(array != null && i < array.length)
95 return Long.valueOf(array[i++]);
96 throw new java.util.NoSuchElementException();
97 }
98
99 public void remove() {
100 throw new UnsupportedOperationException("remove() not supported");

Callers

nothing calls this directly

Calls 1

valueOfMethod · 0.45

Tested by

no test coverage detected