Add two Decimal128 numbers and store the result in sink @param a First operand @param b Second operand @param sink Destination for the result
(Decimal128 a, Decimal128 b, Decimal128 sink)
| 252 | * @param sink Destination for the result |
| 253 | */ |
| 254 | public static void add(Decimal128 a, Decimal128 b, Decimal128 sink) { |
| 255 | sink.copyFrom(a); |
| 256 | sink.add(b); |
| 257 | } |
| 258 | |
| 259 | /** |
| 260 | * Compares 2 Decimal128, ignoring scaling. |