T - the first source value typeU - the second source value typeV - the result value typepublic final class ZipIterable<T,U,V>
extends java.lang.Object
implements java.lang.Iterable<V>
public ZipIterable(java.lang.Iterable<? extends T> left, java.lang.Iterable<? extends U> right, rx.functions.Func2<? super T,? super U,? extends V> combiner)
left - the first sequenceright - the second sequencecombiner - the combinator function