Interface | Description |
---|---|
InfiniteIntIterator |
Base class for
IntIterator s that never run out of elements. |
IntIterator |
An Iterator specialized for
int values. |
Class | Description |
---|---|
ArrayIntIterator |
An
Iterator over an array of items. |
BackPeekingFilteringIntIterator |
Base class for iterators that map the next element by also peeking at the previous element.
|
BackPeekingMappingIntIterator |
An iterator over ints that also maps each element by looking at the current AND the previous element.
|
ChainingIntIterator | |
DelegatingTransformingIntIterator<T,I extends java.util.Iterator<? extends T>> |
A superclass for delegating
IntIterator s. |
DelegatingUnaryIntIterator |
An
IntIterator that delegates to another IntIterator . |
DistinctIntIterator | |
ExclusiveStartingIntIterator | |
ExclusiveTerminalIntIterator | |
FilteringIntIterator | |
ForwardPeekingFilteringIntIterator | |
ForwardPeekingMappingIntIterator |
An iterator over ints that also maps each element by looking at the current AND the next element.
|
InclusiveStartingIntIterator | |
InclusiveTerminalIntIterator | |
IndexedFilteringIntIterator | |
InputStreamIntIterator | |
InterleavingIntIterator |
An
Iterator that interleaves the streams of two other Iterator s with each other. |
LimitingIntIterator | |
PredicatePartitioningIntIterator |
A
CharIterator that can batch up another iterator by comparing two items in sequence and deciding whether
to split up in a batch on those items. |
RepeatingIntIterator |
An
IntIterator that cycles the values of an IntIterable forever. |
SkippingIntIterator | |
SplittingIntIterator |
An
Iterator that can batch up another iterator by comparing two items in sequence and deciding whether
to split up in a batch on those items. |
SteppingIntIterator | |
TailSkippingIntIterator |
An iterator that skips a set number of steps at the end of another iterator.
|
WindowingIntIterator |