/** * Sequentially zips this value with the specified one, discarding the second * element of the tuple. * * @tsplus pipeable.operator effect/core/stm/STM < * @tsplus static effect/core/stm/STM.Aspects zipLeft * @tsplus pipeable effect/core/stm/STM zipLeft */ export function zipLeft(that: STM) { return (self: STM): STM => self.zipWith(that, (a, _) => a) }