/** * Apply both and return the value of the second `Either`. * * @tsplus pipeable-operator Either > * @tsplus static Either.Aspects zipRight * @tsplus pipeable Either zipRight */ export function zipRight(that: Either) { return (self: Either): Either => self.map(() => (b: B) => b).ap(that) }