FunctionalExpressionField

open class FunctionalExpressionField<T, 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>
Builds an Expression of dynamic call of binary operation operation on left and right.
bindSymbol
Link copied to clipboard
common
open override fun bindSymbol(value: String): Expression<T>
Bind a string to a context using StringSymbol
bindSymbolOrNull
Link copied to clipboard
common
open override fun bindSymbolOrNull(symbol: Symbol): Expression<T>?
Builds an Expression to access a variable.
const
Link copied to clipboard
common
open override fun const(value: T): Expression<T>
Builds an Expression of constant expression which 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.
equals
Link copied to clipboard
common
open operator fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
common
open fun hashCode(): Int
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.
toString
Link copied to clipboard
common
open fun toString(): String
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 an unary operation with the certain name.
unaryOperationFunction
Link copied to clipboard
common
open override fun unaryOperationFunction(operation: String): (arg: Expression<T>) -> Expression<T>
Builds an Expression of dynamic call of unary operation with name operation on arg.
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>
neutral operation for multiplication
zero
Link copied to clipboard
common
open override val zero: Expression<T>
The neutral element of addition.

Inheritors

FunctionalExpressionExtendedField
Link copied to clipboard