JBigIntegerField

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

A field over BigInteger.

Functions

add
Link copied to clipboard
open override fun add(a: BigInteger, b: BigInteger): BigInteger
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(b: BigInteger): BigInteger
multiply
Link copied to clipboard
open override fun multiply(a: BigInteger, b: 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(b: 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(b: BigInteger): BigInteger
Multiplies this element by scalar.
unaryMinus
Link copied to clipboard
open operator override fun BigInteger.unaryMinus(): BigInteger
unaryOperation
Link copied to clipboard
open fun unaryOperation(operation: String, arg: BigInteger): BigInteger
Dynamically invokes an unary operation with the certain name.
unaryOperationFunction
Link copied to clipboard
open override fun unaryOperationFunction(operation: String): (arg: BigInteger) -> BigInteger
Dynamically dispatches an 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
neutral operation for multiplication
zero
Link copied to clipboard
open override val zero: BigInteger
The neutral element of addition.