42 if (!(Result is
null))
46 if (!(Result is
null))
65 Left.Differentiate(VariableName,
Variables),
66 Right.Differentiate(VariableName,
Variables),
67 this.Start,
this.Length,
this.Expression);
Script runtime exception.
Class managing a script expression.
Base class for binary element-wise operators.
ScriptNode right
Right operand.
ScriptNode left
Left operand.
Base class for all nodes in a parsed script tree.
int Length
Length of expression covered by node.
int Start
Start position in script expression.
Element-wise Addition operator.
ScriptNode Differentiate(string VariableName, Variables Variables)
Differentiates a script node, if possible.
AddElementWise(ScriptNode Left, ScriptNode Right, int Start, int Length, Expression Expression)
Element-wise Addition operator.
override IElement EvaluateScalar(IElement Left, IElement Right, Variables Variables)
Evaluates the operator on scalar operands.
static IElement EvaluateAddition(IElement Left, IElement Right, ScriptNode Node)
Adds two operands.
Basic interface for all types of elements.
object AssociatedObjectValue
Associated object value.
Basic interface for all types of element-wise semigroup elements.
ISemiGroupElementWise AddRightElementWise(ISemiGroupElementWise Element)
Tries to add an element to the current element, from the right, element-wise.
ISemiGroupElementWise AddLeftElementWise(ISemiGroupElementWise Element)
Tries to add an element to the current element, from the left, element-wise.
Base interface for lambda expressions.