Calculate modulo of two Decimal128 numbers and store the result in sink (a % b -> sink) @param a First operand (dividend) @param b Second operand (divisor) @param sink Destination for the result
(Decimal128 a, Decimal128 b, Decimal128 sink)
| 485 | * @param sink Destination for the result |
| 486 | */ |
| 487 | public static void modulo(Decimal128 a, Decimal128 b, Decimal128 sink) { |
| 488 | sink.copyFrom(a); |
| 489 | sink.modulo(b); |
| 490 | } |
| 491 | |
| 492 | /** |
| 493 | * Multiply two Decimal128 numbers and store the result in sink |