times

open operator override fun Short.times(other: Int): Short(source)

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

The result is equal to this * other.value


open operator override fun Short.times(other: UInt): Short(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 Short.times(other: Long): Short(source)

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

The result is equal to this * other.value.


open operator override fun Short.times(other: ULong): Short(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 Int.times(other: Short): Short(source)
open operator override fun Long.times(other: Short): Short(source)

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

The result is equal to this.value * other.


open operator override fun UInt.times(other: Short): Short(source)
open operator override fun ULong.times(other: Short): Short(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 Short.times(other: Short): Short(source)

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