ImmutableList<T>.IImmutableList<T>.Remove メソッド

定義

指定した値を持つ要素をリストから削除します。

 virtual System::Collections::Immutable::IImmutableList<T> ^ System.Collections.Immutable.IImmutableList<T>.Remove(T value, System::Collections::Generic::IEqualityComparer<T> ^ equalityComparer) = System::Collections::Immutable::IImmutableList<T>::Remove;
System.Collections.Immutable.IImmutableList<T> IImmutableList<T>.Remove (T value, System.Collections.Generic.IEqualityComparer<T> equalityComparer);
abstract member System.Collections.Immutable.IImmutableList<T>.Remove : 'T * System.Collections.Generic.IEqualityComparer<'T> -> System.Collections.Immutable.IImmutableList<'T>
override this.System.Collections.Immutable.IImmutableList<T>.Remove : 'T * System.Collections.Generic.IEqualityComparer<'T> -> System.Collections.Immutable.IImmutableList<'T>
Function Remove (value As T, equalityComparer As IEqualityComparer(Of T)) As IImmutableList(Of T) Implements IImmutableList(Of T).Remove

パラメーター

value
T

リストから削除する要素の値。

equalityComparer
IEqualityComparer<T>

要素が等しいかどうかを比較するために使用する比較子。

戻り値

指定した要素が削除された新しい ImmutableList<T>

実装

注釈

このメンバーは、明示的なインターフェイス メンバーの実装です。 これは、ImmutableList<T> のインスタンスが IImmutableList<T> インターフェイスにキャストされる場合のみ、使用できます。

適用対象