/** * Like `zip`, but keeps only the result from the that sink. * * @tsplus pipeable-operator effect/core/stream/Sink > * @tsplus static effect/core/stream/Sink zipRight * @tsplus pipeable effect/core/stream/Sink zipRight */ export function zipRight( that: Sink ) { return (self: Sink): Sink => self.zipWith(that, (_, z1) => z1) }