ImmutableHashSet<T>.IImmutableSet<T>.Intersect Método

Definición

Crea un conjunto inmutable que contiene los elementos que existen en este conjunto y en el conjunto especificado.

 virtual System::Collections::Immutable::IImmutableSet<T> ^ System.Collections.Immutable.IImmutableSet<T>.Intersect(System::Collections::Generic::IEnumerable<T> ^ other) = System::Collections::Immutable::IImmutableSet<T>::Intersect;
System.Collections.Immutable.IImmutableSet<T> IImmutableSet<T>.Intersect (System.Collections.Generic.IEnumerable<T> other);
abstract member System.Collections.Immutable.IImmutableSet<T>.Intersect : seq<'T> -> System.Collections.Immutable.IImmutableSet<'T>
override this.System.Collections.Immutable.IImmutableSet<T>.Intersect : seq<'T> -> System.Collections.Immutable.IImmutableSet<'T>
Function Intersect (other As IEnumerable(Of T)) As IImmutableSet(Of T) Implements IImmutableSet(Of T).Intersect

Parámetros

other
IEnumerable<T>

Colección que se va a comparar con el conjunto actual.

Devoluciones

Nuevo conjunto inmutable que contiene los elementos que existen en ambos conjuntos.

Implementaciones

Comentarios

Este miembro es una implementación explícita de un miembro de interfaz. Solo se puede utilizar cuando la instancia de ImmutableHashSet<T> se convierte en una interfaz IImmutableSet<T>.

Se aplica a