def __ge__(self, other):
        lt = self.__lt__(other)
        return None if lt is None else not lt