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