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