Interface | Description |
---|---|
InfiniteLongIterator |
Base class for
LongIterator s that never run out of elements. |
LongIterator |
An Iterator specialized for
long values. |
Class | Description |
---|---|
ArrayLongIterator |
An
Iterator over an array of items. |
BackPeekingFilteringLongIterator |
Base class for iterators that map the next element by also peeking at the previous element.
|
BackPeekingMappingLongIterator |
An iterator over longs that also maps each element by looking at the current AND the previous element.
|
ChainingLongIterator | |
DelegatingTransformingLongIterator<T,I extends java.util.Iterator<T>> |
A superclass for delegating
LongIterator s. |
DelegatingUnaryLongIterator |
A
LongIterator that delegates to another LongIterator . |
DistinctLongIterator | |
ExclusiveStartingLongIterator | |
ExclusiveTerminalLongIterator | |
FilteringLongIterator | |
ForwardPeekingFilteringLongIterator | |
ForwardPeekingMappingLongIterator |
An iterator over ints that also maps each element by looking at the current AND the next element.
|
InclusiveStartingLongIterator | |
InclusiveTerminalLongIterator | |
IndexedFilteringLongIterator | |
InterleavingLongIterator |
An
Iterator that interleaves the streams of two other Iterator s with each other. |
LimitingLongIterator | |
PredicatePartitioningLongIterator |
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. |
RepeatingLongIterator |
An
LongIterator that cycles the values of an LongIterable forever. |
SkippingLongIterator | |
SplittingLongIterator |
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. |
SteppingLongIterator | |
TailSkippingLongIterator |
An iterator that skips a set number of steps at the end of another iterator.
|
WindowingLongIterator |