times

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

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