ImmutableHashSet<T>.Except(IEnumerable<T>) メソッド

定義

現在の変更できないハッシュ セットから、指定したコレクション内の要素を削除します。

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

パラメーター

other
IEnumerable<T>

このセットから削除する項目のコレクション。

返品

項目が削除された新しいセット。または、セット内に項目がない場合は元のセット。

適用対象