Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
EqualToElementWise.cs
4
6{
11 {
21 : base(Left, Right, Start, Length, Expression)
22 {
23 }
24
33 {
34 if (Left.Equals(Right))
35 return BooleanValue.True;
36 else
37 return BooleanValue.False;
38 }
39 }
40}
Class managing a script expression.
Definition: Expression.cs:39
Base class for binary element-wise operators.
Base class for all nodes in a parsed script tree.
Definition: ScriptNode.cs:69
int Length
Length of expression covered by node.
Definition: ScriptNode.cs:101
int Start
Start position in script expression.
Definition: ScriptNode.cs:92
Boolean-valued number.
Definition: BooleanValue.cs:12
static readonly BooleanValue False
Constant false value.
static readonly BooleanValue True
Constant true value.
override IElement EvaluateScalar(IElement Left, IElement Right, Variables Variables)
Evaluates the operator on scalar operands.
EqualToElementWise(ScriptNode Left, ScriptNode Right, int Start, int Length, Expression Expression)
Element-Wise Equal To.
Collection of variables.
Definition: Variables.cs:25
Basic interface for all types of elements.
Definition: IElement.cs:20