IImmutableSet<T>.Union(IEnumerable<T>) Método

Definición

Crea un conjunto inmutable que contiene todos los elementos que están presentes en el conjunto actual o en la colección especificada.

public:
 System::Collections::Immutable::IImmutableSet<T> ^ Union(System::Collections::Generic::IEnumerable<T> ^ other);
public System.Collections.Immutable.IImmutableSet<T> Union (System.Collections.Generic.IEnumerable<T> other);
abstract member Union : seq<'T> -> System.Collections.Immutable.IImmutableSet<'T>
Public Function Union (other As IEnumerable(Of T)) As IImmutableSet(Of T)

Parámetros

other
IEnumerable<T>

Colección de la que se van a agregar elementos.

Devoluciones

Nuevo conjunto inmutable con los elementos agregados; o conjunto original si ya estaban todos los elementos en el conjunto.

Comentarios

Los elementos duplicados contenidos en other se omiten.

Se aplica a