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 중복 요소는 무시됩니다.

적용 대상