/** * Returns an effect that executes both this effect and the specified effect, * in parallel, this effect result returned. If either side fails, then the * other side will be interrupted. * * @tsplus static effect/core/io/Effect.Aspects zipParLeft * @tsplus pipeable effect/core/io/Effect zipParLeft */ export function zipParLeft(that: Effect) { return (self: Effect): Effect => self.zipWithPar(that, (a, _) => a) }