/** * Combines this computation with the specified computation combining the * results of both into a tuple. * * @tsplus static Eval.Aspects zip * @tsplus pipeable Eval zip */ export function zip(that: Eval) { return (self: Eval): Eval => self.zipWith(that, (a, b) => [a, b]) }