zip method

Stream<Iterable<T>> zip()

Implementation

Stream<Iterable<T>> zip() {
  return ZipStream<T, Iterable<T>>(this, (o) => o);
}