Package: effect
Module: Iterable
Takes two Iterables and returns an Iterable of corresponding pairs.
Signature
declare const zip: { <B>(that: Iterable<B>): <A>(self: Iterable<A>) => Iterable<[A, B]>; <A, B>(self: Iterable<A>, that: Iterable<B>): Iterable<[A, B]>; }
Since v2.0.0