ImmutableSortedSet<T>.Intersect(IEnumerable<T>) Method

Definition

Creates an immutable sorted set that contains elements that exist both in this set and in the specified set.

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

Parameters

other
IEnumerable<T>

The set to intersect with this one.

Returns

A new immutable sorted set that contains any elements that exist in both sets.

Remarks

System.Collections.Immutable NuGet package

About immutable collections and how to install

Applies to