| Class | Description |
|---|---|
| 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] -> of(1),of(a),of(2),of(b),empty,of(c)
|
| RoundrobinShortestIterator<E> |
shortest
|
| UnchainIterator<C extends Collection<T>,T> | |
| UnchainLongestIterator<C extends Collection<Optional<T>>,T> |
squared
|
| UnchainShortestIterator<C extends Collection<T>,T> |
shortest
|
Copyright © 2017. All rights reserved.