times

open operator override fun UInt.times(other: ULong): UInt(source)

Multiplies this number and the other integer as elements of the Semiring.

The result is equal to this * other.value


open operator override fun ULong.times(other: UInt): UInt(source)

Sums this integer and the other number as elements of the Semiring.

The result is equal to this.value * other.


open operator override fun UInt.times(other: UInt): UInt(source)

Multiplies this number and the other integer as elements of the Semiring.

The result is equal to this * other.value.