operator % abstract method

IntX operator %(
  1. Object other
)

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

IntX operator %(Object other);