mod method

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

Computes the remainder of the Euclidean division a % b.

Implementation

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