ImmutableSortedSet<T>.IImmutableSet<T>.SymmetricExcept Method

Definition

Creates an immutable set that contains only elements that are present either in the current set or in the specified collection, but not both.

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

Parameters

other
IEnumerable<T>

The collection to compare to the current set.

Returns

A new set that contains the elements that are present only in the current set or in the specified collection, but not both.

Implements

Remarks

This member is an explicit interface member implementation. It can be used only when the ImmutableSortedSet<T> instance is cast to an IImmutableSet<T> interface.

System.Collections.Immutable NuGet package

About immutable collections and how to install

Applies to