ImmutableSortedSet<T>.Intersect(IEnumerable<T>) Método

Definición

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

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)

Parámetros

other
IEnumerable<T>

Conjunto que va a formar una intersección con este

Devoluciones

Nuevo conjunto ordenado inmutable que incluye todos los elementos que existen en ambos conjuntos.

Comentarios

Paquete NuGet System.Collections.Immutable

Acerca de las colecciones inmutables y cómo instalar

Se aplica a