| Modifier and Type | Class and Description |
|---|---|
class |
ZipLongestIterator<E1,E2>
Adapts two iterators yielding their longest convolution (via a
Pair
|
| Modifier and Type | Class and Description |
|---|---|
class |
AtMostMemoryIterator<T> |
class |
MemoryIterator<T> |
class |
TakeWhileIterator<E> |
| Modifier and Type | Class and Description |
|---|---|
class |
ArrayIterator<T>
An array backed iterator.
|
class |
ConstantIterator<T>
An infinite Iterator always yielding the same value.
|
class |
EmptyIterator<T>
An empty iterator.
|
class |
SingletonIterator<T>
A singleton iterator.
|
| Modifier and Type | Class and Description |
|---|---|
class |
BatchingIterator<C extends Collection<T>,T> |
class |
ChainIterator<E>
A composite iterator.
|
class |
CyclicIterator<E>
A cyclic iterator.
|
class |
InterposingIterator<T>
A composite iterator interposing value yielded by the values iterator
with value from the separators iterator.
|
class |
RoundrobinIterator<E>
longest multiplexing
[1,2] [a,b,c] -> [1,a,2,b,c]
|
class |
RoundrobinLongestIterator<E>
squared: [1,2] [a,b,c] -> just(1),just(a),just(2),just(b),nothing,just(c)
|
class |
RoundrobinShortestIterator<E>
shortest
|
class |
UnchainIterator<C extends Collection<T>,T>
shortest
|
class |
UnchainWithExactChannelSizeIterator<C extends Collection<Maybe<T>>,T>
squared
|
| Modifier and Type | Class and Description |
|---|---|
class |
MaybeIterator<E>
Decorates an Iterator yielding Maybe.just(element) for every element in the
contained iterator and Maybe.nothing() beyond the nested iterator bounds
|
| Modifier and Type | Class and Description |
|---|---|
class |
PeriodicIterator<T>
An infinite periodic iterator yielding an ascending sequence of T.
|
| Modifier and Type | Class and Description |
|---|---|
class |
StringIterator |
| Modifier and Type | Class and Description |
|---|---|
class |
CenteredWindowIterator<W extends Collection<Maybe<T>>,T>
[1,2,3,4,5], 3 -> (-,1,2), (1,2,3), (2,3,4), (3,4,5), (4,5,-)
|
class |
PreciseWindowIterator<W extends Collection<T>,T>
[1,2,3,4,5], 3 -> (1,2,3), (2,3,4), (3,4,5)
|
Copyright © 2012. All Rights Reserved.