IImmutableSet<T>.IsProperSupersetOf(IEnumerable<T>) メソッド

定義

現在の変更できないセットが、指定されたコレクションの真のスーパーセット (真部分集合) であるかどうかを判断します。

public:
 bool IsProperSupersetOf(System::Collections::Generic::IEnumerable<T> ^ other);
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

パラメーター

other
IEnumerable<T>

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

戻り値

現在のセットが、指定されたコレクションの真のスーパーセットの場合は true。それ以外の場合は false

注釈

現在のセットが の適切なスーパーセットである other場合、現在のセットには、持たない要素が other 少なくとも 1 つ必要です。

適用対象