Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
SetOfVariations.cs
3
5{
9 public class SetOfVariations : Set
10 {
14 public static readonly SetOfVariations Instance = new SetOfVariations();
15
20 {
21 }
22
26 public override bool Contains(IElement Element)
27 {
28 return
33 }
34
38 public override bool Equals(object obj)
39 {
40 return obj is SetOfVariations;
41 }
42
46 public override int GetHashCode()
47 {
48 return ((object)this).GetHashCode();
49 }
50 }
51}
Base class for all types of elements.
Definition: Element.cs:13
Base class for all types of sets.
Definition: Set.cs:14
override bool Contains(IElement Element)
TODO
static readonly SetOfVariations Instance
TODO
Basic interface for all types of elements.
Definition: IElement.cs:20