| 181 | bool IsZero() const { return !*this; } |
| 182 | bool NotZero() const { return !IsZero(); } |
| 183 | bool IsNegative() const { return sign_ == NEGATIVE; } |
| 184 | bool NotNegative() const { return !IsNegative(); } |
| 185 | bool IsPositive() const { return NotNegative() && NotZero(); } |
| 186 | bool NotPositive() const { return !IsPositive(); } |