MCPcopy Create free account
hub / github.com/antlr/codebuff / next

Method next

output/java8/1.4.17/ArrayIterator.java:57–64  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

55 }
56
57 @Override
58 public Object next() {
59 i++; // move to next element
60 if ( i>=n ) {
61 throw new NoSuchElementException();
62 }
63 return Array.get(array, i);
64 }
65
66 @Override
67 public void remove() {

Callers

nothing calls this directly

Calls 1

getMethod · 0.65

Tested by

no test coverage detected