! this method subtracts one from the value and returns carry */
| 337 | this method subtracts one from the value and returns carry |
| 338 | */ |
| 339 | uint SubOne() |
| 340 | { |
| 341 | bool p1_is_sign = IsSign(); |
| 342 | |
| 343 | UInt<value_size>::SubOne(); |
| 344 | |
| 345 | return CorrectCarryAfterSubtracting(p1_is_sign, false); |
| 346 | } |
| 347 | |
| 348 | |
| 349 | private: |