Closed travisjungroth closed 2 years ago
Example for GT
def __invert__(self) -> LTE: return LTE(self.operand)
The rule is you flip the direction, and flip whether it has "equal to". So "not greater than" is the same as "less than or equal to".
~< == >=
Add a doctest to GT.
GT
Example for GT
The rule is you flip the direction, and flip whether it has "equal to". So "not greater than" is the same as "less than or equal to".
~< == >=