Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
MatrixForEachDefinition.cs
5
7{
12 {
21 : base(Elements, Start, Length, Expression)
22 {
23 }
24
30 protected override IElement Encapsulate(ChunkedList<IElement> Elements)
31 {
32 return MatrixDefinition.Encapsulate(Elements, this);
33 }
34
35 }
36}
A chunked list is a linked list of chunks of objects of type T .
Definition: ChunkedList.cs:54
Class managing a script expression.
Definition: Expression.cs:41
int Length
Length of expression covered by node.
Definition: ScriptNode.cs:101
int Start
Start position in script expression.
Definition: ScriptNode.cs:92
static IMatrix Encapsulate(ICollection< IElement > Rows, ScriptNode Node)
Encapsulates the elements of a matrix.
override IElement Encapsulate(ChunkedList< IElement > Elements)
Encapsulates the calculated elements.
MatrixForEachDefinition(ForEach Elements, int Start, int Length, Expression Expression)
Creates a matrix using a FOREACH statement.
Basic interface for all types of elements.
Definition: IElement.cs:21