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

Definition

Check if this set is a superset of other, but not the same as it.

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

Parameters

other
IEnumerable<T>

The sequence to check against.

Returns

True if this set is a proper subperset of other; otherwise false.

Applies to