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