Package: effect
Module: Iterable
Apply a function to pairs of elements at the same index in two Iterables, collecting the results. If one
input Iterable is short, excess elements of the longer Iterable are discarded.
Signature
declare const zipWith: { <B, A, C>(that: Iterable<B>, f: (a: A, b: B) => C): (self: Iterable<A>) => Iterable<C>; <A, B, C>(self: Iterable<A>, that: Iterable<B>, f: (a: A, b: B) => C): Iterable<C>; }
Since v2.0.0