! it sets an absolute value it can return carry (1) (look on ChangeSign() for details) */
| 165 | it can return carry (1) (look on ChangeSign() for details) |
| 166 | */ |
| 167 | uint Abs() |
| 168 | { |
| 169 | if( !IsSign() ) |
| 170 | return 0; |
| 171 | |
| 172 | return ChangeSign(); |
| 173 | } |
| 174 | |
| 175 | |
| 176 |
no outgoing calls
no test coverage detected