/** * Combines this computation with the specified computation, returning the * value of that computation. * * @tsplus pipeable-operator Eval > * @tsplus static Eval.Aspects zipRight * @tsplus pipeable Eval zipRight */ export function zipRight(that: Eval) { return (self: Eval): Eval => self.zipWith(that, (_, b) => b) }