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