Negates this Decimal256 in-place using two's complement arithmetic. Changes the sign of the decimal number (positive becomes negative and vice versa).
()
| 1432 | * Changes the sign of the decimal number (positive becomes negative and vice versa). |
| 1433 | */ |
| 1434 | public void negate() { |
| 1435 | if (isNull()) { |
| 1436 | return; |
| 1437 | } |
| 1438 | negateNonNull(); |
| 1439 | } |
| 1440 | |
| 1441 | /** |
| 1442 | * Negates this Decimal256 in-place using two's complement arithmetic. |