BigIntegerContext

Default ring for BigInteger type which values are seen as integers. It also implements Order and Hashing interfaces in the default understanding.

Such ring is useless when used as is, but useful when used in generalized algorithms.

Properties

Link copied to clipboard
open override val one: BigInteger

Represents a unit element (a.k.a. neutral multiplicative element).

Link copied to clipboard
open val Int.value: BigInteger

Converts instance of Int to an element of the Ring it is equal to.

Converts instance of Long to an element of the Ring it is equal to.

Converts instance of UInt to an element of the Semiring it is equal to.

Converts instance of Long to an element of the Semiring it is equal to.

Link copied to clipboard
open override val zero: BigInteger

Represents a zero element (a.k.a. neutral additive element).

Functions

Link copied to clipboard
open infix override fun BigInteger.compareWith(other: BigInteger): ComparisonResult
Link copied to clipboard
open operator override fun contains(element: Any?): Boolean
Link copied to clipboard
open operator override fun BigInteger.div(other: BigInteger): BigInteger

Returns quotient of Euclidean division (a.k.a. a division with remainder).

Link copied to clipboard

Returns result of Euclidean division (a.k.a. a division with remainder), both quotient and remainder.

Link copied to clipboard
open infix fun BigInteger.equalsTo(other: BigInteger): Boolean
Link copied to clipboard
open fun BigInteger.hash(): Int
Link copied to clipboard

Checks that this number is not a one in the context of the Semiring.

Link copied to clipboard

Checks that this number is not a zero in the context of the Semiring.

Link copied to clipboard

Checks that this number is a one in the context of the Semiring.

Link copied to clipboard

Checks that this number is a zero in the context of the Semiring.

Link copied to clipboard
open operator override fun BigInteger.minus(other: BigInteger): BigInteger

Subtracts this and the other numbers in terms of the Ring.

open operator override fun BigInteger.minus(other: Int): BigInteger
open operator override fun BigInteger.minus(other: Long): BigInteger
open operator override fun BigInteger.minus(other: UInt): BigInteger
open operator override fun BigInteger.minus(other: ULong): BigInteger

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

open operator override fun Int.minus(other: BigInteger): BigInteger
open operator override fun Long.minus(other: BigInteger): BigInteger
open operator override fun UInt.minus(other: BigInteger): BigInteger
open operator override fun ULong.minus(other: BigInteger): BigInteger

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

Link copied to clipboard
open operator override fun BigInteger.plus(other: BigInteger): BigInteger

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

open operator override fun BigInteger.plus(other: Int): BigInteger
open operator override fun BigInteger.plus(other: Long): BigInteger

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

open operator override fun BigInteger.plus(other: UInt): BigInteger
open operator override fun BigInteger.plus(other: ULong): BigInteger

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

open operator override fun Int.plus(other: BigInteger): BigInteger
open operator override fun Long.plus(other: BigInteger): BigInteger

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

open operator override fun UInt.plus(other: BigInteger): BigInteger
open operator override fun ULong.plus(other: BigInteger): BigInteger

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

Link copied to clipboard
open infix fun BigInteger.pow(exponent: UInt): BigInteger

Raises this number in the power of exponent.

open infix fun BigInteger.pow(exponent: ULong): BigInteger

Raises this number in the power of exponent.

Link copied to clipboard
open fun power(base: BigInteger, exponent: UInt): BigInteger

Raises base number in the power of exponent.

open fun power(base: BigInteger, exponent: ULong): BigInteger

Raises base number in the power of exponent.

Link copied to clipboard
open override fun reify(element: Any?): BigInteger
Link copied to clipboard
open override fun reifyMaybe(element: Any?): Maybe<BigInteger>
Link copied to clipboard
open override fun reifyOrNull(element: Any?): BigInteger?
Link copied to clipboard
open operator override fun BigInteger.rem(other: BigInteger): BigInteger

Returns remainder of Euclidean division (a.k.a. a division with remainder).

Link copied to clipboard
open operator override fun BigInteger.times(other: BigInteger): BigInteger

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

open operator override fun BigInteger.times(other: Int): BigInteger
open operator override fun BigInteger.times(other: Long): BigInteger

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

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

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

open operator override fun Int.times(other: BigInteger): BigInteger
open operator override fun Long.times(other: BigInteger): BigInteger

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

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

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

Link copied to clipboard
open operator override fun BigInteger.unaryMinus(): BigInteger

Inverses this value in terms of the Ring.

Link copied to clipboard
open override fun valueOf(arg: Int): BigInteger

Converts instance of Int to an element of the Ring it is equal to.

open override fun valueOf(arg: Long): BigInteger

Converts instance of Long to an element of the Ring it is equal to.

open override fun valueOf(arg: UInt): BigInteger

Converts instance of UInt to an element of the Semiring it is equal to.

open override fun valueOf(arg: ULong): BigInteger

Converts instance of ULong to an element of the Semiring it is equal to.