Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
EmptySet.cs
3
5{
9 public class EmptySet : IConstant
10 {
14 public EmptySet()
15 {
16 }
17
21 public string ConstantName => "∅";
22
26 public string[] Aliases => new string[] { nameof(EmptySet) };
27
33 {
34 return set;
35 }
36
37 private static readonly Objects.Sets.EmptySet set = new Objects.Sets.EmptySet();
38 }
39}
IElement GetValueElement(Variables Variables)
Gets the constant value element.
Definition: EmptySet.cs:32
EmptySet()
The empty set.
Definition: EmptySet.cs:14
string ConstantName
Name of the constant
Definition: EmptySet.cs:21
string[] Aliases
Optional aliases. If there are no aliases for the constant, null is returned.
Definition: EmptySet.cs:26
Collection of variables.
Definition: Variables.cs:25
Basic interface for all types of elements.
Definition: IElement.cs:20
Base interface for constants that integrate into the script engine.
Definition: IConstant.cs:10