Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
NewGuid.cs
4
6{
11 {
19 : base(Start, Length, Expression)
20 {
21 }
22
26 public override string FunctionName => nameof(NewGuid);
27
35 {
36 return new ObjectValue(System.Guid.NewGuid());
37 }
38 }
39}
Class managing a script expression.
Definition: Expression.cs:39
override string FunctionName
Name of the function
Definition: NewGuid.cs:26
NewGuid(int Start, int Length, Expression Expression)
NewGuid()
Definition: NewGuid.cs:18
override IElement Evaluate(Variables Variables)
Evaluates the node, using the variables provided in the Variables collection. This method should be ...
Definition: NewGuid.cs:34
Base class for funcions of zero variables.
int Length
Length of expression covered by node.
Definition: ScriptNode.cs:101
int Start
Start position in script expression.
Definition: ScriptNode.cs:92
Collection of variables.
Definition: Variables.cs:25
Basic interface for all types of elements.
Definition: IElement.cs:20