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>

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

戻り値

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

適用対象