Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
Z.cs
4
6{
10 public class Z : IConstant
11 {
15 public Z()
16 {
17 }
18
22 public string ConstantName => nameof(Z);
23
27 public string[] Aliases => new string[] { "ℤ" };
28
34 {
35 return set;
36 }
37
38 private static readonly Integers set = new Integers();
39 }
40}
Integers.
Definition: Z.cs:11
string ConstantName
Name of the constant
Definition: Z.cs:22
string[] Aliases
Optional aliases. If there are no aliases for the constant, null is returned.
Definition: Z.cs:27
IElement GetValueElement(Variables Variables)
Gets the constant value element.
Definition: Z.cs:33
Z()
Integers.
Definition: Z.cs:15
Euclidian domain of integers.
Definition: Integers.cs:12
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