Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
NotEqualToElementWise.cs
4
6{
11 {
21 : base(Left, Right, Start, Length, Expression)
22 {
23 }
24
33 {
34 if (Left.Equals(Right))
35 return BooleanValue.False;
36 else
37 return BooleanValue.True;
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.
NotEqualToElementWise(ScriptNode Left, ScriptNode Right, int Start, int Length, Expression Expression)
Element-Wise Not Equal To.
override IElement EvaluateScalar(IElement Left, IElement Right, Variables Variables)
Evaluates the operator on scalar operands.
Collection of variables.
Definition: Variables.cs:25
Basic interface for all types of elements.
Definition: IElement.cs:20