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