remainder function

BigInt remainder(
  1. BigInt dividend,
  2. BigInt divisor
)

Remainder (% operator). The result has the sign of the dividend.

Implementation

BigInt remainder(BigInt dividend, BigInt divisor) => dividend % divisor;