modPow method

  1. @override
Fraction modPow(
  1. Fraction base,
  2. Fraction exponent,
  3. Fraction modulus
)
override

Computes base to the power of exponent modulo modulus.

Implementation

@override
Fraction modPow(Fraction base, Fraction exponent, Fraction modulus) =>
    unsupportedOperation('modPow');