IImmutableSet<T>.Union(IEnumerable<T>) 方法

定义

创建一个新的不可变集,该集包含存在于当前集或指定集合中的所有元素。

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)

参数

other
IEnumerable<T>

从中添加元素的集合。

返回

已添加项的新不可变集;或者原始集(如果所有项已在该集内)。

注解

将忽略中包含的 other 任何重复元素。

适用于