/** * Zips this effect and that effect in parallel. * * @tsplus static effect/core/io/Effect.Aspects zipPar * @tsplus pipeable effect/core/io/Effect zipPar * @tsplus pipeable-operator effect/core/io/Effect & */ export function zipPar(that: Effect) { return (self: Effect): Effect => self.zipWithPar(that, (a, b) => [a, b] as const) }