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