HashSet<T>.IntersectWith(IEnumerable<T>) Metodo

Definizione

Modifica l'oggetto HashSet<T> corrente per contenere solo elementi presenti in tale oggetto e nella raccolta specificata.

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

Parametri

other
IEnumerable<T>

Raccolta da confrontare con l'oggetto HashSet<T> corrente.

Implementazioni

Attributi

Eccezioni

other è null.

Commenti

Se l'insieme rappresentato dal other parametro è una raccolta con lo stesso comparer di uguaglianza dell'oggetto correnteHashSet<T>, questo metodo è un'operazione HashSet<T> O(n). In caso contrario, questo metodo è un'operazione O(n + m), dove n è e m è Count il numero di elementi in .other

Si applica a