ImmutableHashSet<T>.Builder.IsProperSubsetOf メソッド

定義

現在のセットが、指定されたコレクションの真のサブセット (真部分集合) であるかどうかを判断します。

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>

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

戻り値

現在のセットが other の真のサブセットの場合は true。それ以外の場合は false

実装

適用対象