public interface IntIterator
next().| Modifier and Type | Method and Description |
|---|---|
boolean |
hasNext()
Identical to
Iterator.hasNext(). |
int |
next()
Identical to
Iterator.next() but avoids auto-boxing. |
void |
remove()
Identical to
Iterator.remove(). |
int next()
Iterator.next() but avoids auto-boxing.boolean hasNext()
Iterator.hasNext().void remove()
Iterator.remove().Copyright © 2015. All rights reserved.