ImmutableHashSet<T>.Builder.IntersectWith(IEnumerable<T>) Method

Definition

Modifies the current set so that it contains only elements that are also in a specified collection.

public:
 virtual void IntersectWith(System::Collections::Generic::IEnumerable<T> ^ other);
public void IntersectWith (System.Collections.Generic.IEnumerable<T> other);
abstract member IntersectWith : seq<'T> -> unit
override this.IntersectWith : seq<'T> -> unit
Public Sub IntersectWith (other As IEnumerable(Of T))

Parameters

other
IEnumerable<T>

The collection to compare to the current set.

Implements

Applies to