/** * Sequentially zips this transactional effect with the that transactional * effect. * * @tsplus pipeable-operator effect/core/stm/STM + * @tsplus static effect/core/stm/STM.Aspects zipFlatten * @tsplus pipeable effect/core/stm/STM zipFlatten */ export function zipFlatten(that: STM) { return >( self: STM ): STM => self.zipWith(that, (a, a2) => [...a, a2]) }