| 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); |
| 191 | Integer& operator+=(const Integer& t); |
no outgoing calls
no test coverage detected