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

定义

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

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

参数

other
IEnumerable<T>

要与此集相交的集。

返回

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

注解

System.Collections.Immutable NuGet 包

关于不可变集合以及如何安装

适用于