Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
SetWhileDoDefinition.cs
1using System;
2using System.Collections.Generic;
6
8{
13 {
22 : base(Elements, Start, Length, Expression)
23 {
24 }
25
31 protected override IElement Encapsulate(LinkedList<IElement> Elements)
32 {
33 return SetDefinition.Encapsulate(Elements);
34 }
35 }
36}
Class managing a script expression.
Definition: Expression.cs:39
int Length
Length of expression covered by node.
Definition: ScriptNode.cs:101
int Start
Start position in script expression.
Definition: ScriptNode.cs:92
static IElement Encapsulate(ICollection< IElement > Elements)
Encapsulates the elements of a set.
Creates a set using a WHILE-DO statement.
SetWhileDoDefinition(WhileDo Elements, int Start, int Length, Expression Expression)
Creates a set using a WHILE-DO statement.
override IElement Encapsulate(LinkedList< IElement > Elements)
Encapsulates the calculated elements.
Creates a vector using a WHILE-DO statement.
Basic interface for all types of elements.
Definition: IElement.cs:20