zipIt<A, B> static method

Iterable<Tuple2<A, B>> zipIt<A, B>(
  1. Iterable<A> first,
  2. Iterable<B> second
)

Implementation

static Iterable<Tuple2<A, B>> zipIt<A, B>(
  Iterable<A> first,
  Iterable<B> second,
) =>
    ZippedIterable(first, second);