Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
BinaryOperation.cs
3
4namespace Waher.Script.Model
5{
10 {
18 {
19 this.Name = Name;
20 this.Left = Left;
21 this.Right = Right;
22 }
23
27 public string Name { get; }
28
32 public IElement Left { get; }
33
37 public IElement Right { get; }
38 }
39}
Information about a binary operation for use with custom binary operators.
BinaryOperation(string Name, IElement Left, IElement Right)
Information about a binary operation for use with custom binary operators.
string Name
Name of operator.
Basic interface for all types of elements.
Definition: IElement.cs:21