FunctionalExpressionGroup

open class FunctionalExpressionGroup<T, out A : Group<T>>(algebra: A) : FunctionalExpressionAlgebra<T, A> , Group<Expression<T>>

A context class for Expression construction for Ring algebras.

Constructors

FunctionalExpressionGroup
Link copied to clipboard
common
fun <out A : Group<T>> FunctionalExpressionGroup(algebra: A)

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>?
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 that does not depend on arguments.
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.
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.
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.
zero
Link copied to clipboard
common
open override val zero: Expression<T>
The neutral element of addition.

Inheritors

FunctionalExpressionRing
Link copied to clipboard

Sources

common source
Link copied to clipboard