times

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

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

The result is equal to this * other.value


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

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

The result is equal to this * other.value.


open operator fun Int.times(other: Number): Number(source)
open operator fun Long.times(other: Number): Number(source)

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

The result is equal to this.value * other.