/** * Runs both sinks in parallel on the input and combines the results in a * tuple. * * @tsplus static effect/core/stream/Sink.Aspects zipPar * @tsplus pipeable effect/core/stream/Sink zipPar */ export function zipPar( that: Sink ) { return ( self: Sink ): Sink => self.zipWithPar(that, (z, z1) => [z, z1] as const) }