ImmutableSortedSet<T>.Builder.IsSupersetOf(IEnumerable<T>) メソッド

定義

現在のセットが、指定されたコレクションのスーパーセットであるかどうかを判断します。

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

パラメーター

other
IEnumerable<T>

現在のセットと比較するコレクション。

戻り値

現在のセットが other パラメーターのスーパーセットの場合は true。それ以外の場合は false

実装

適用対象