mod method

  1. @override
Fraction mod(
  1. Fraction a,
  2. Fraction b
)
override

Computes the remainder of the Euclidean division a % b.

Implementation

@override
Fraction mod(Fraction a, Fraction b) => unsupportedOperation('mod');