Package: effect
Module: Iterable
Zips this Iterable crosswise with the specified Iterable using the specified combiner.
Signature
declare const cartesianWith: { <A, B, 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