Uses of Class
util.Functional.Zipper

Packages that use Functional.Zipper
util   
 

Uses of Functional.Zipper in util
 

Methods in util that return Functional.Zipper
static
<A,B> Functional.Zipper<A,B>
Functional.zip(A[] arrA, B[] arrB)
          Iterate over two arrays at once.
static
<A,B> Functional.Zipper<A,B>
Functional.zip(Iterable<A> collA, Iterable<B> collB)
          Iterate over two iterables at once, pairing them element by element.
static
<A,B> Functional.Zipper<A,B>
Functional.zip(Iterator<A> iterA, Iterator<B> iterB)
          Iterate over two iterators at once.