FloatContext

Default field for Float type which values are seen as real numbers and where precision problems and occurrences of NaN, +INF, and -INF are ignored. It also implements 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: Float

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

Link copied to clipboard

Finds reciprocal of this number in terms of the Field.

Link copied to clipboard
open val Int.value: Float

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

open val Long.value: Float

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

open val UInt.value: Float

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

open val ULong.value: Float

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

Link copied to clipboard
open override val zero: Float

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

Functions

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

Divides this number by other number in terms of the Field.

open operator override fun Float.div(other: Int): Float
open operator override fun Float.div(other: Long): Float
open operator override fun Float.div(other: UInt): Float
open operator override fun Float.div(other: ULong): Float

Divides this number by other integer as elements of the Field.

open operator override fun Int.div(other: Float): Float
open operator override fun Long.div(other: Float): Float
open operator override fun UInt.div(other: Float): Float
open operator override fun ULong.div(other: Float): Float

Divides this integer by other number as elements of the Field.

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

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

Link copied to clipboard
open fun Float.isNotZero(): Boolean

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

Link copied to clipboard
open fun Float.isOne(): Boolean

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Link copied to clipboard
open infix fun Float.pow(exponent: Int): Float

Raises this number in the power of exponent.

open infix fun Float.pow(exponent: Long): Float

Raises this number in the power of exponent.

open infix fun Float.pow(exponent: UInt): Float

Raises this number in the power of exponent.

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

Raises this number in the power of exponent.

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

Raises base number in the power of exponent.

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

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

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

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

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

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

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

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

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

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

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

Inverses this value in terms of the Ring.

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

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

open override fun valueOf(arg: Long): Float

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

open override fun valueOf(arg: UInt): Float

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

open override fun valueOf(arg: ULong): Float

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