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