effect-io-ai

Package: effect
Module: Iterable

Iterable.zip

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]>; }

Source

Since v2.0.0