JBigIntegerField

object JBigIntegerField : Ring<BigInteger> , NumericAlgebra<BigInteger>

A field over BigInteger.

Functions

add
Link copied to clipboard
open override fun add(left: BigInteger, right: BigInteger): BigInteger
Addition of two elements.
binaryOperation
Link copied to clipboard
open fun binaryOperation(operation: String, left: BigInteger, right: BigInteger): BigInteger
Dynamically invokes a binary operation with the certain name.
binaryOperationFunction
Link copied to clipboard
open override fun binaryOperationFunction(operation: String): (left: BigInteger, right: BigInteger) -> BigInteger
Dynamically dispatches a binary operation with the certain name.
bindSymbol
Link copied to clipboard
open fun bindSymbol(value: String): BigInteger
The same as bindSymbolOrNull but throws an error if symbol could not be bound
bindSymbolOrNull
Link copied to clipboard
open fun bindSymbolOrNull(value: String): BigInteger?
Wraps a raw string to T object.
leftSideNumberOperation
Link copied to clipboard
open fun leftSideNumberOperation(operation: String, left: Number, right: BigInteger): BigInteger
Dynamically invokes a binary operation with the certain name with numeric first argument.
leftSideNumberOperationFunction
Link copied to clipboard
open fun leftSideNumberOperationFunction(operation: String): (left: Number, right: BigInteger) -> BigInteger
Dynamically dispatches a binary operation with the certain name with numeric first argument.
minus
Link copied to clipboard
open operator override fun BigInteger.minus(other: BigInteger): BigInteger
Subtraction of two elements.
multiply
Link copied to clipboard
open override fun multiply(left: BigInteger, right: BigInteger): BigInteger
Multiplies two elements.
number
Link copied to clipboard
open override fun number(value: Number): BigInteger
Wraps a number to T object.
plus
Link copied to clipboard
open operator fun BigInteger.plus(other: BigInteger): BigInteger
Addition of two elements.
rightSideNumberOperation
Link copied to clipboard
open fun rightSideNumberOperation(operation: String, left: BigInteger, right: Number): BigInteger
Dynamically invokes a binary operation with the certain name with numeric second argument.
rightSideNumberOperationFunction
Link copied to clipboard
open fun rightSideNumberOperationFunction(operation: String): (left: BigInteger, right: Number) -> BigInteger
Dynamically dispatches a binary operation with the certain name with numeric first argument.
times
Link copied to clipboard
open operator fun BigInteger.times(other: BigInteger): BigInteger
Multiplies this element by scalar.
unaryMinus
Link copied to clipboard
open operator override fun BigInteger.unaryMinus(): BigInteger
The negation of this element.
unaryOperation
Link copied to clipboard
open fun unaryOperation(operation: String, arg: BigInteger): BigInteger
Dynamically invokes a unary operation with the certain name.
unaryOperationFunction
Link copied to clipboard
open override fun unaryOperationFunction(operation: String): (arg: BigInteger) -> BigInteger
Dynamically dispatches a unary operation with the certain name.
unaryPlus
Link copied to clipboard
open operator fun BigInteger.unaryPlus(): BigInteger
Returns this value.

Properties

one
Link copied to clipboard
open override val one: BigInteger
The neutral element of multiplication
zero
Link copied to clipboard
open override val zero: BigInteger
The neutral element of addition.

Sources

jvm source
Link copied to clipboard