/** * Parallelly zips the this result with the specified result discarding the * first element of the tuple or else returns the failed `Cause`. * * @tsplus static effect/core/io/Exit.Aspects zipParRight * @tsplus pipeable effect/core/io/Exit zipParRight */ export function zipParRight(that: Exit) { return (self: Exit): Exit => self.zipWith( that, (_, b) => b, Cause.both ) }