IReadOnlySet.IsProperSupersetOf(IEnumerable) Method

Definition

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

public bool IsProperSupersetOf (System.Collections.IEnumerable other);
abstract member IsProperSupersetOf : System.Collections.IEnumerable -> bool
Public Function IsProperSupersetOf (other As IEnumerable) As Boolean

Parameters

other
IEnumerable

The sequence to check against.

Returns

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

Applies to