Negate a Decimal128 number and store the result in sink @param a Input operand to negate @param sink Destination for the result
(Decimal128 a, Decimal128 sink)
| 508 | * @param sink Destination for the result |
| 509 | */ |
| 510 | public static void negate(Decimal128 a, Decimal128 sink) { |
| 511 | sink.copyFrom(a); |
| 512 | sink.negate(); |
| 513 | } |
| 514 | |
| 515 | public static void put(Decimal128 d, long addr) { |
| 516 | put(d.high, d.low, addr); |