| Class | Description |
|---|---|
| BatchingIterator<C extends Collection<T>,T> | |
| ChainIterator<E> |
A composite iterator.
|
| CyclicIterator<E> |
A cyclic iterator.
|
| InterposingIterator<T> |
A composite iterator interposing value yielded by the values iterator
with value from the separators iterator.
|
| RoundrobinIterator<E> |
longest multiplexing
[1,2] [a,b,c] -> [1,a,2,b,c]
|
| RoundrobinLongestIterator<E> |
squared: [1,2] [a,b,c] -> just(1),just(a),just(2),just(b),nothing,just(c)
|
| RoundrobinShortestIterator<E> |
shortest
|
| UnchainIterator<C extends Collection<T>,T> |
shortest
|
| UnchainWithExactChannelSizeIterator<C extends Collection<Maybe<T>>,T> |
squared
|
Copyright © 2012. All Rights Reserved.