/** * Sequentially zips this effect with the specified effect using the * specified combiner function. * * @tsplus static effect/core/io/Effect.Aspects zipWith * @tsplus pipeable effect/core/io/Effect zipWith */ export function zipWith( that: Effect, f: (a: A, b: A2) => B ) { return (self: Effect): Effect => self.flatMap((a) => that.map((b) => f(a, b))) }