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