Interface | Description |
---|---|
DoubleIterator |
An Iterator specialized for
double values. |
InfiniteDoubleIterator |
Base class for
DoubleIterator s that never run out of elements. |
Class | Description |
---|---|
ArrayDoubleIterator |
An
Iterator over an array of items. |
BackPeekingFilteringDoubleIterator |
Base class for iterators that map the next element by also peeking at the previous element.
|
BackPeekingMappingDoubleIterator |
An iterator over doubles that also maps each element by looking at the current AND the previous element.
|
ChainingDoubleIterator | |
DelegatingTransformingDoubleIterator<T,I extends java.util.Iterator<T>> |
A superclass for delegating
DoubleIterator s. |
DelegatingUnaryDoubleIterator |
A
DoubleIterator that delegates to another DoubleIterator . |
DistinctDoubleIterator | |
DistinctExactlyDoubleIterator | |
ExclusiveStartingDoubleIterator | |
ExclusiveTerminalDoubleIterator | |
FilteringDoubleIterator | |
ForwardPeekingFilteringDoubleIterator | |
ForwardPeekingMappingDoubleIterator |
An iterator over ints that also maps each element by looking at the current AND the next element.
|
InclusiveStartingDoubleIterator | |
InclusiveTerminalDoubleIterator | |
IndexedFilteringDoubleIterator | |
InterleavingDoubleIterator |
An
Iterator that interleaves the streams of two other Iterator s with each other. |
LimitingDoubleIterator | |
PredicatePartitioningDoubleIterator |
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. |
RepeatingDoubleIterator |
An
DoubleIterator that cycles the values of an DoubleIterable forever. |
SkippingDoubleIterator | |
SplittingDoubleIterator |
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. |
SteppingDoubleIterator | |
TailSkippingDoubleIterator |
An iterator that skips a set number of steps at the end of another iterator.
|
WindowingDoubleIterator |