operator % method
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 %(Object other) => _divide(this, other, _RETURN_MOD);