Package org.agrona.collections
Class IntArrayQueue.IntIterator
java.lang.Object
org.agrona.collections.IntArrayQueue.IntIterator
- Enclosing class:
IntArrayQueue
Specialised
Iterator
from which the value can be retrieved without boxing via nextValue()
.-
Field Details
-
index
private int index
-
-
Constructor Details
-
IntIterator
public IntIterator()
-
-
Method Details
-
reset
IntArrayQueue.IntIterator reset() -
hasNext
public boolean hasNext() -
next
-
nextValue
public int nextValue()Get the next value from the iterator without boxing.- Returns:
- the next value from the queue.
-