| 185 | bool IsPositive() const { return NotNegative() && NotZero(); } |
| 186 | bool NotPositive() const { return !IsPositive(); } |
| 187 | bool IsEven() const { return GetBit(0) == 0; } |
| 188 | bool IsOdd() const { return GetBit(0) == 1; } |
| 189 | |
| 190 | Integer& operator=(const Integer& t); |