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