effect-io-ai

Package: effect
Module: Iterable

Iterable.cartesianWith

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

Source

Since v2.0.0