HashSet<T>.IntersectWith(IEnumerable<T>) Método

Definição

Modifica o objeto HashSet<T> atual para que ele contenha somente elementos presentes no objeto e na coleção especificada.

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))

Parâmetros

other
IEnumerable<T>

A coleção a ser comparada com o objeto HashSet<T> atual.

Implementações

Atributos

Exceções

other é null.

Comentários

Se a coleção representada pelo other parâmetro for uma HashSet<T> coleção com o mesmo comparador de igualdade que o objeto atual HashSet<T> , esse método será uma operação O(n). Caso contrário, esse método é uma operação O(n + m), em n que é Count e m é o número de elementos em .other

Aplica-se a