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

Definition

Determines whether the current immutable hash set is a proper (strict) superset of a specified collection.

public:
 virtual bool IsProperSupersetOf(System::Collections::Generic::IEnumerable<T> ^ other);
public bool IsProperSupersetOf (System.Collections.Generic.IEnumerable<T> other);
abstract member IsProperSupersetOf : seq<'T> -> bool
override this.IsProperSupersetOf : seq<'T> -> bool
Public Function IsProperSupersetOf (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 proper superset of the specified collection; otherwise, false.

Implements

Remarks

If the current set is a proper superset of other, the current set must have at least one element that other does not have.

Applies to