Negates this decimal value in-place, changing its sign. If the decimal is positive, it becomes negative; if negative, it becomes positive. Zero remains zero. Null values remain null. Example: decimal.of(123, 2); // 1.23 decimal.negate(); // -1.23
()
| 107 | * </pre> |
| 108 | */ |
| 109 | void negate(); |
| 110 | |
| 111 | /** |
| 112 | * Sets this decimal to {@code digits * 10^power}. |
no outgoing calls