zip<U> method

Iterable<Pair<T, U>> zip<U>(
  1. Iterable<U> other
)

apply zip(this, other)

Implementation

Iterable<Pair<T, U>> zip<U>(Iterable<U> other) => _zipCore(this, other);