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