times

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

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

The result is equal to this * other.value.


open operator fun Number.times(other: ULong): Number(source)

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

The result is equal to this * other.value


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

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

The result is equal to this.value * other.


abstract operator fun Number.times(other: Number): Number(source)

Multiplies this and the other numbers in terms of the Semiring.