UShortContext

Default Euclidean semiring for UShort type which values are seen as non-negative integers and where overflows are ignored. It also implements Reification, ExtendedSemiring, Order, and Hashing interfaces in the default understanding.

Such context is useless when used as is, but useful when used in generalised algorithms.

Properties

Link copied to clipboard
open override val one: UShort

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

Link copied to clipboard
open val UInt.value: UShort

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

open val ULong.value: UShort

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

Link copied to clipboard
open override val zero: UShort

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

Functions

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

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

Link copied to clipboard
open infix override fun UShort.divrem(other: UShort): EuclideanDivisionResult<UShort>

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

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

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
open fun UShort.isOne(): Boolean

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

Link copied to clipboard
open fun UShort.isZero(): Boolean

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

Link copied to clipboard
open operator fun UInt.minus(other: UShort): UShort

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

open operator fun ULong.minus(other: UShort): UShort

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

open operator fun UShort.minus(other: UInt): UShort

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

open operator fun UShort.minus(other: ULong): UShort

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

open operator override fun UShort.minus(other: UShort): UShort

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

Link copied to clipboard
open operator override fun UInt.plus(other: UShort): UShort
open operator override fun ULong.plus(other: UShort): UShort

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

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

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

open operator override fun UShort.plus(other: UShort): UShort

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

Link copied to clipboard
open infix override fun UShort.pow(exponent: UInt): UShort
open infix override fun UShort.pow(exponent: ULong): UShort

Raises this number in the power of exponent.

Link copied to clipboard
open override fun power(base: UShort, exponent: UInt): UShort
open override fun power(base: UShort, exponent: ULong): UShort

Raises base number in the power of exponent.

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

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

Link copied to clipboard
open operator override fun UInt.times(other: UShort): UShort
open operator override fun ULong.times(other: UShort): UShort

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

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

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

open operator override fun UShort.times(other: UShort): UShort

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

Link copied to clipboard
open override fun valueOf(arg: UInt): UShort

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

open override fun valueOf(arg: ULong): UShort

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