public final class PairZipped<Left,Right> extends DelegatingIterable<Pair<Left,Right>>
Iterable combining the elements of two given Iterables into an Iterable of Pairs.
This iterates as many elements as the shorter of both Iterables.
| Constructor and Description |
|---|
PairZipped(java.lang.Iterable<Left> leftIterable,
java.lang.Iterable<Right> rightIterable) |
iterator