HashSet<T>.IntersectWith(IEnumerable<T>) 方法

定义

修改当前的 HashSet<T> 对象,以仅包含该对象和指定集合中存在的元素。

public:
 virtual void IntersectWith(System::Collections::Generic::IEnumerable<T> ^ other);
public:
 void IntersectWith(System::Collections::Generic::IEnumerable<T> ^ other);
public void IntersectWith (System.Collections.Generic.IEnumerable<T> other);
[System.Security.SecurityCritical]
public void IntersectWith (System.Collections.Generic.IEnumerable<T> other);
abstract member IntersectWith : seq<'T> -> unit
override this.IntersectWith : seq<'T> -> unit
[<System.Security.SecurityCritical>]
member this.IntersectWith : seq<'T> -> unit
[<System.Security.SecurityCritical>]
abstract member IntersectWith : seq<'T> -> unit
override this.IntersectWith : seq<'T> -> unit
Public Sub IntersectWith (other As IEnumerable(Of T))

参数

other
IEnumerable<T>

要与当前的 HashSet<T> 对象进行比较的集合。

实现

属性

例外

othernull

注解

如果 参数表示的 other 集合是与 HashSet<T> 当前 HashSet<T> 对象具有相同相等比较器的集合,则此方法是 O (n) 操作。 否则,此方法为 O (n + m) 操作,其中 nCountm 中的 other元素数。

适用于