Package org.roaringbitmap
Class BatchIntIterator
java.lang.Object
org.roaringbitmap.BatchIntIterator
- All Implemented Interfaces:
Cloneable
,IntIterator
Wraps a batch iterator for use as an IntIterator
-
Field Summary
Fields -
Constructor Summary
ConstructorsModifierConstructorDescription(package private)
BatchIntIterator
(BatchIterator delegate, int[] buffer) Wraps the batch iterator.private
BatchIntIterator
(BatchIterator delegate, int i, int mark, int[] buffer) -
Method Summary
-
Field Details
-
i
private int i -
mark
private int mark -
buffer
private int[] buffer -
delegate
-
-
Constructor Details
-
BatchIntIterator
-
BatchIntIterator
BatchIntIterator(BatchIterator delegate, int[] buffer) Wraps the batch iterator.- Parameters:
delegate
- the batch iterator to do the actual iterationbuffer
- the buffer
-
-
Method Details
-
hasNext
public boolean hasNext()- Specified by:
hasNext
in interfaceIntIterator
- Returns:
- whether there is another value
-
next
public int next()- Specified by:
next
in interfaceIntIterator
- Returns:
- next integer value
-
clone
Description copied from interface:IntIterator
Creates a copy of the iterator.- Specified by:
clone
in interfaceIntIterator
- Overrides:
clone
in classObject
- Returns:
- a clone of the current iterator
-