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

Definition

Check if this set is a superset of other.

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

Parameters

other
IEnumerable<T>

The sequence to check against.

Returns

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

Applies to