ImmutableHashSet<T>.Intersect(IEnumerable<T>) 方法

定义

创建一个不可变哈希集,其中包含同时存在于此集和指定集内的元素。

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

参数

other
IEnumerable<T>

要与当前集进行比较的集合。

返回

一个新的不可变集,其中包含同时存在于两个集内的所有元素。

适用于