ImmutableSortedSet<T>.Except(IEnumerable<T>) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Removes a specified set of items from this immutable sorted set.
public:
System::Collections::Immutable::ImmutableSortedSet<T> ^ Except(System::Collections::Generic::IEnumerable<T> ^ other);
public System.Collections.Immutable.ImmutableSortedSet<T> Except (System.Collections.Generic.IEnumerable<T> other);
member this.Except : seq<'T> -> System.Collections.Immutable.ImmutableSortedSet<'T>
Public Function Except (other As IEnumerable(Of T)) As ImmutableSortedSet(Of T)
Parameters
- other
- IEnumerable<T>
The items to remove from this set.
Returns
A new set with the items removed; or the original set if none of the items were in the set.
Remarks
System.Collections.Immutable NuGet package
About immutable collections and how to install
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.