/** * Same as `zip` but discards the output of the left hand side. * * @tsplus pipeable-operator effect/core/io/Fiber > * @tsplus pipeable-operator effect/core/io/RuntimeFiber > * @tsplus static effect/core/io/Fiber.Aspects zipRight * @tsplus static effect/core/io/RuntimeFiber.Aspects zipRight * @tsplus pipeable effect/core/io/Fiber zipRight * @tsplus pipeable effect/core/io/RuntimeFiber zipRight */ export function zipRight(that: Fiber) { return (self: Fiber): Fiber => self.zipWith( that, (_, b) => b ) }