ImmutableArray<T>.IImmutableList<T>.Remove メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定した要素の最初の出現箇所が配列から削除された配列を返します。一致するものが見つからない場合は、現在の配列が返されます。
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>
検索で使用する等価比較子。
返品
値が削除された新しい配列。
実装
注釈
このメンバーは、明示的なインターフェイス メンバーの実装です。 ImmutableArray<T> インスタンスがIImmutableList<T> インターフェイスにキャストされている場合にのみ使用できます。