tuweni / org.apache.tuweni.units.bigints / BaseUInt256Value / multiplyMod

multiplyMod

open fun multiplyMod(value: T, modulus: UInt256!): T (source)
open fun multiplyMod(value: Long, modulus: UInt256!): T (source)
open fun multiplyMod(value: Long, modulus: Long): T (source) open fun multiplyMod(value: UInt256!, modulus: UInt256!): T (source)

Returns a value that is ((this * value) mod modulus).

Parameters

value - UInt256!: The amount to multiply this value by.

modulus - UInt256!: The modulus.

Exceptions

ArithmeticException - value < 0 or modulus == 0.

Return
T: (this * value) mod modulus