FunctionalExpressionField

open class FunctionalExpressionField<T, out A : Field<T>>(algebra: A) : FunctionalExpressionRing<T, A> , Field<Expression<T>> , ScaleOperations<Expression<T>>

Functions

add
Link copied to clipboard
common
open override fun add(a: Expression<T>, b: Expression<T>): Expression<T>
Builds an Expression of addition of two another expressions.
binaryOperation
Link copied to clipboard
common
open fun binaryOperation(operation: String, left: Expression<T>, right: Expression<T>): Expression<T>
Dynamically invokes a binary operation with the certain name.
binaryOperationFunction
Link copied to clipboard
common
open override fun binaryOperationFunction(operation: String): (left: Expression<T>, right: Expression<T>) -> Expression<T>
Dynamically dispatches a binary operation with the certain name.
bindSymbol
Link copied to clipboard
common
open fun bindSymbol(value: String): Expression<T>
The same as bindSymbolOrNull but throws an error if symbol could not be bound
bindSymbolOrNull
Link copied to clipboard
common
open override fun bindSymbolOrNull(value: String): Expression<T>?
Wraps a raw string to T object.
const
Link copied to clipboard
common
open override fun const(value: T): Expression<T>
Builds an Expression of constant expression that does not depend on arguments.
div
Link copied to clipboard
common
operator fun T.div(arg: Expression<T>): Expression<T>
operator fun Expression<T>.div(arg: T): Expression<T>
open operator fun Expression<T>.div(b: Expression<T>): Expression<T>
Division of two elements.
open operator fun Expression<T>.div(k: Number): Expression<T>
Division of this element by scalar.
divide
Link copied to clipboard
common
open override fun divide(a: Expression<T>, b: Expression<T>): Expression<T>
Builds an Expression of division an expression by another one.
leftSideNumberOperation
Link copied to clipboard
common
open fun leftSideNumberOperation(operation: String, left: Number, right: Expression<T>): Expression<T>
Dynamically invokes a binary operation with the certain name with numeric first argument.
leftSideNumberOperationFunction
Link copied to clipboard
common
open fun leftSideNumberOperationFunction(operation: String): (left: Number, right: Expression<T>) -> Expression<T>
Dynamically dispatches a binary operation with the certain name with numeric first argument.
minus
Link copied to clipboard
common
operator fun T.minus(arg: Expression<T>): Expression<T>
operator fun Expression<T>.minus(arg: T): Expression<T>
open operator fun Expression<T>.minus(b: Expression<T>): Expression<T>
Subtraction of two elements.
multiply
Link copied to clipboard
common
open override fun multiply(a: Expression<T>, b: Expression<T>): Expression<T>
Builds an Expression of multiplication of two expressions.
number
Link copied to clipboard
common
open override fun number(value: Number): Expression<T>
Wraps a number to T object.
plus
Link copied to clipboard
common
operator fun T.plus(arg: Expression<T>): Expression<T>
operator fun Expression<T>.plus(arg: T): Expression<T>
open operator fun Expression<T>.plus(b: Expression<T>): Expression<T>
Addition of two elements.
rightSideNumberOperation
Link copied to clipboard
common
open fun rightSideNumberOperation(operation: String, left: Expression<T>, right: Number): Expression<T>
Dynamically invokes a binary operation with the certain name with numeric second argument.
rightSideNumberOperationFunction
Link copied to clipboard
common
open fun rightSideNumberOperationFunction(operation: String): (left: Expression<T>, right: Number) -> Expression<T>
Dynamically dispatches a binary operation with the certain name with numeric first argument.
scale
Link copied to clipboard
common
open override fun scale(a: Expression<T>, value: Double): Expression<T>
Scaling an element by a scalar.
times
Link copied to clipboard
common
operator fun T.times(arg: Expression<T>): Expression<T>
operator fun Expression<T>.times(arg: T): Expression<T>
open operator fun Expression<T>.times(b: Expression<T>): Expression<T>
Multiplies this element by scalar.
open operator fun Number.times(b: Expression<T>): Expression<T>
Multiplication of this number by element.
open operator fun Expression<T>.times(k: Number): Expression<T>
Multiplication of this element by a scalar.
unaryMinus
Link copied to clipboard
common
open operator override fun Expression<T>.unaryMinus(): Expression<T>
The negation of this element.
unaryOperation
Link copied to clipboard
common
open fun unaryOperation(operation: String, arg: Expression<T>): Expression<T>
Dynamically invokes a unary operation with the certain name.
unaryOperationFunction
Link copied to clipboard
common
open override fun unaryOperationFunction(operation: String): (arg: Expression<T>) -> Expression<T>
Dynamically dispatches a unary operation with the certain name.
unaryPlus
Link copied to clipboard
common
open operator fun Expression<T>.unaryPlus(): Expression<T>
Returns this value.

Properties

algebra
Link copied to clipboard
common
val algebra: A
The algebra to provide for Expressions built.
one
Link copied to clipboard
common
open override val one: Expression<T>
The neutral element of multiplication
zero
Link copied to clipboard
common
open override val zero: Expression<T>
The neutral element of addition.

Inheritors

FunctionalExpressionExtendedField
Link copied to clipboard

Sources

common source
Link copied to clipboard