remainder method

  1. @override
BigInt remainder(
  1. BigInt a,
  2. BigInt b
)
override

Computes the remainder of the truncating division.

Implementation

@override
BigInt remainder(BigInt a, BigInt b) => a.remainder(b);