Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
StackItem.cs
2{
6 public enum OperatorPriority
7 {
11 Equals = 0,
12
16 Parenthesis = 1,
17
21 Terms = 2,
22
26 Factors = 3,
27
31 Powers = 4
32 }
33
37 public class StackItem
38 {
42 public string? Entry;
43
47 public string? Script;
48
53
57 public string? Operator;
58
62 public bool StartParenthesis;
63 }
64}
OperatorPriority Priority
Priority level
Definition: StackItem.cs:52
bool StartParenthesis
If parenthesis was started
Definition: StackItem.cs:62
OperatorPriority
Binary operator priority
Definition: StackItem.cs:7