ImmutableHashSet<T>.IsProperSubsetOf(IEnumerable<T>) メソッド

定義

現在の変更できないハッシュ セットが、指定したコレクションの適切な (厳密な) サブセットであるかどうかを判断します。

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

パラメーター

other
IEnumerable<T>

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

返品

true 現在のセットが指定されたコレクションの適切なサブセットである場合。それ以外の場合は false

実装

注釈

現在のセットが otherの適切なサブセットである場合、 other には、現在のセットに含まれていない要素が少なくとも 1 つ必要です。

適用対象