abstract fun multiplyMod(value: T, modulus: UInt256!): T
(source)
Returns a value that is ((this * value) mod modulus)
.
value
- T: The amount to multiply this value by.
modulus
- UInt256!: The modulus.
ArithmeticException
- value
< 0 or modulus
== 0.
Return
T: (this * value) mod modulus
abstract fun multiplyMod(value: Long, modulus: UInt256!): T
(source)
Returns a value that is ((this * value) mod modulus)
.
value
- Long: The amount to multiply this value by.
modulus
- UInt256!: The modulus.
ArithmeticException
- value
< 0 or modulus
== 0.
Return
T: (this * value) mod modulus
abstract fun multiplyMod(value: Long, modulus: Long): T
(source)
Returns a value that is ((this * value) mod modulus)
.
value
- Long: The amount to multiply this value by.
ArithmeticException
- value
< 0 or modulus
≤ 0.
Return
T: (this * value) mod modulus