interface ISet<T>
in global :: System . Collections . Generic
Provides the base interface for the abstraction of sets.
TThe type of elements in the set.
public bool Add( T item )
😔 No documentation found.
public void UnionWith( IEnumerable<T> other )
😔 No documentation found.
public void IntersectWith( IEnumerable<T> other )
😔 No documentation found.
public void ExceptWith( IEnumerable<T> other )
😔 No documentation found.
public void SymmetricExceptWith( IEnumerable<T> other )
😔 No documentation found.
public bool IsSubsetOf( IEnumerable<T> other )
😔 No documentation found.
public bool IsSupersetOf( IEnumerable<T> other )
😔 No documentation found.
public bool IsProperSupersetOf( IEnumerable<T> other )
😔 No documentation found.
public bool IsProperSubsetOf( IEnumerable<T> other )
😔 No documentation found.
public bool Overlaps( IEnumerable<T> other )
😔 No documentation found.
public bool SetEquals( IEnumerable<T> other )
😔 No documentation found.