/** * Sequentially zips this effect with the specified effect * * @tsplus static effect/core/io/Effect.Aspects zipFlattenPar * @tsplus pipeable effect/core/io/Effect zipFlattenPar */ export function zipFlattenPar(that: Effect) { return >( self: Effect ): Effect => self.zipWithPar(that, (a, a2) => [...a, a2]) }