Package | Description |
---|---|
org.apache.commons.collections4 |
This package contains the interfaces and utilities shared across all the subpackages of this component.
|
Modifier and Type | Method and Description |
---|---|
static <E> ZippingIterator<E> |
IteratorUtils.zippingIterator(java.util.Iterator<? extends E>... iterators)
Returns an iterator that interleaves elements from the decorated iterators.
|
static <E> ZippingIterator<E> |
IteratorUtils.zippingIterator(java.util.Iterator<? extends E> a,
java.util.Iterator<? extends E> b)
Returns an iterator that interleaves elements from the decorated iterators.
|
static <E> ZippingIterator<E> |
IteratorUtils.zippingIterator(java.util.Iterator<? extends E> a,
java.util.Iterator<? extends E> b,
java.util.Iterator<? extends E> c)
Returns an iterator that interleaves elements from the decorated iterators.
|