ImmutableHashSet<T>.IsSupersetOf(IEnumerable<T>) Method

Definition

Determines whether the current immutable hash set is a superset of a specified collection.

public:
 virtual bool IsSupersetOf(System::Collections::Generic::IEnumerable<T> ^ other);
public bool IsSupersetOf (System.Collections.Generic.IEnumerable<T> other);
abstract member IsSupersetOf : seq<'T> -> bool
override this.IsSupersetOf : seq<'T> -> bool
Public Function IsSupersetOf (other As IEnumerable(Of T)) As Boolean

Parameters

other
IEnumerable<T>

The collection to compare to the current set.

Returns

true if the current set is a superset of the specified collection; otherwise, false.

Implements

Applies to