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

Method next

src/jvm/clojure/lang/TransformerIterator.java:100–107  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

98}
99
100public Object next() {
101 if(hasNext()) {
102 Object ret = next;
103 next = NONE;
104 return ret;
105 }
106 throw new NoSuchElementException();
107}
108
109public void remove() {
110 throw new UnsupportedOperationException();

Callers

nothing calls this directly

Calls 1

hasNextMethod · 0.95

Tested by

no test coverage detected