/** * Sequentially zips this value with the specified one. * * @tsplus static effect/core/stm/STM.Aspects zip * @tsplus pipeable effect/core/stm/STM zip */ export function zip(that: STM) { return (self: STM): STM => self.zipWith(that, (a, b) => [a, b] as const) }