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

Method next

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

Source from the content-addressed store, hash-verified

115 }
116
117 public Double next() {
118 if(array != null && i < array.length)
119 return Double.valueOf(array[i++]);
120 throw new java.util.NoSuchElementException();
121 }
122
123 public void remove() {
124 throw new UnsupportedOperationException("remove() not supported");

Callers

nothing calls this directly

Calls 1

valueOfMethod · 0.45

Tested by

no test coverage detected