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

定義

このセットと指定されたセットに存在する要素のみを含む、変更できないセットを作成します。

public:
 System::Collections::Immutable::IImmutableSet<T> ^ Intersect(System::Collections::Generic::IEnumerable<T> ^ other);
public System.Collections.Immutable.IImmutableSet<T> Intersect (System.Collections.Generic.IEnumerable<T> other);
abstract member Intersect : seq<'T> -> System.Collections.Immutable.IImmutableSet<'T>
Public Function Intersect (other As IEnumerable(Of T)) As IImmutableSet(Of T)

パラメーター

other
IEnumerable<T>

現在の IImmutableSet<T> と比較するコレクション。

戻り値

両方のセットに存在する要素を含む、新しい変更できないセット。

適用対象