abstract fun mod(modulus: UInt32): T (source)
Returns a value that is (this mod modulus).
ArithmeticException - modulus == 0.
Return
this mod modulus.
abstract fun mod(modulus: Int): T (source)
Returns a value that is (this mod modulus).
ArithmeticException - modulus ≤ 0.
Return
this mod modulus.