/** * Apply both and return second. * * @tsplus pipeable-operator Maybe > * @tsplus static Maybe.Aspects zipRight * @tsplus pipeable Maybe zipRight */ export function zipRight(that: Maybe) { return (self: Maybe): Maybe => self.flatMap(() => that) }