Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ISet.cs
1using System;
3
5{
9 public interface ISet : IElement
10 {
17
21 int? Size
22 {
23 get;
24 }
25 }
26}
Base class for all types of elements.
Definition: Element.cs:13
Basic interface for all types of elements.
Definition: IElement.cs:20
Basic interface for all types of sets.
Definition: ISet.cs:10
int? Size
Size of set, if finite and known, otherwise null is returned.
Definition: ISet.cs:22
bool Contains(IElement Element)
Checks if the set contains an element.