/** * @tsplus static effect/core/stream/Sink.Aspects zip * @tsplus pipeable effect/core/stream/Sink zip */ export function zip( that: Sink ) { return ( self: Sink ): Sink => self.zipWith(that, (z, z1) => [z, z1] as const) }