Static modulo method. @param dividend the dividend @param divisor the divisor @param result the result @throws NumericException if division by zero occurs
(Decimal256 dividend, Decimal256 divisor, Decimal256 result)
| 694 | * @throws NumericException if division by zero occurs |
| 695 | */ |
| 696 | public static void modulo(Decimal256 dividend, Decimal256 divisor, Decimal256 result) { |
| 697 | result.copyFrom(dividend); |
| 698 | result.modulo(divisor); |
| 699 | } |
| 700 | |
| 701 | /** |
| 702 | * Static multiplication method. |