/** * Like `zipPar`, but keeps only the result from that sink. * * @tsplus static effect/core/stream/Sink.Aspects zipParRight * @tsplus pipeable effect/core/stream/Sink zipParRight */ export function zipParRight( that: Sink ) { return (self: Sink): Sink => self.zipWithPar(that, (_, z1) => z1) }