operator % method

  1. @override
Int64 operator %(
  1. dynamic other
)
override

Euclidean modulo operator.

Returns the remainder of the euclidean division. The euclidean division of two integers a and b yields two integers q and r such that a == b * q + r and 0 <= r < a.abs().

Implementation

@override
Int64 operator %(other) => _divide(this, other, _RETURN_MOD);