ImmutableList<T>.IImmutableList<T>.RemoveRange メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
この変更できないリストから要素の範囲を削除します。
オーバーロード
IImmutableList<T>.RemoveRange(IEnumerable<T>, IEqualityComparer<T>) |
この変更できないリストから、指定した項目に一致する要素の範囲を削除します。 |
IImmutableList<T>.RemoveRange(Int32, Int32) |
指定された位置にある指定された数の要素をこのリストから削除します。 |
注釈
このメンバーは、明示的なインターフェイス メンバーの実装です。 これは、ImmutableList<T> のインスタンスが IImmutableList<T> インターフェイスにキャストされる場合のみ、使用できます。
IImmutableList<T>.RemoveRange(IEnumerable<T>, IEqualityComparer<T>)
この変更できないリストから、指定した項目に一致する要素の範囲を削除します。
virtual System::Collections::Immutable::IImmutableList<T> ^ System.Collections.Immutable.IImmutableList<T>.RemoveRange(System::Collections::Generic::IEnumerable<T> ^ items, System::Collections::Generic::IEqualityComparer<T> ^ equalityComparer) = System::Collections::Immutable::IImmutableList<T>::RemoveRange;
System.Collections.Immutable.IImmutableList<T> IImmutableList<T>.RemoveRange (System.Collections.Generic.IEnumerable<T> items, System.Collections.Generic.IEqualityComparer<T> equalityComparer);
abstract member System.Collections.Immutable.IImmutableList<T>.RemoveRange : seq<'T> * System.Collections.Generic.IEqualityComparer<'T> -> System.Collections.Immutable.IImmutableList<'T>
override this.System.Collections.Immutable.IImmutableList<T>.RemoveRange : seq<'T> * System.Collections.Generic.IEqualityComparer<'T> -> System.Collections.Immutable.IImmutableList<'T>
Function RemoveRange (items As IEnumerable(Of T), equalityComparer As IEqualityComparer(Of T)) As IImmutableList(Of T) Implements IImmutableList(Of T).RemoveRange
パラメーター
- items
- IEnumerable<T>
見つかった場合にリストから削除する項目の範囲。
- equalityComparer
- IEqualityComparer<T>
要素の比較に使用する等値比較子。
戻り値
項目が削除された変更できないリスト。
実装
例外
items
または equalityComparer
が null
です。
注釈
このメンバーは、明示的なインターフェイス メンバーの実装です。 これは、ImmutableList<T> のインスタンスが IImmutableList<T> インターフェイスにキャストされる場合のみ、使用できます。
適用対象
IImmutableList<T>.RemoveRange(Int32, Int32)
指定された位置にある指定された数の要素をこのリストから削除します。
virtual System::Collections::Immutable::IImmutableList<T> ^ System.Collections.Immutable.IImmutableList<T>.RemoveRange(int index, int count) = System::Collections::Immutable::IImmutableList<T>::RemoveRange;
System.Collections.Immutable.IImmutableList<T> IImmutableList<T>.RemoveRange (int index, int count);
abstract member System.Collections.Immutable.IImmutableList<T>.RemoveRange : int * int -> System.Collections.Immutable.IImmutableList<'T>
override this.System.Collections.Immutable.IImmutableList<T>.RemoveRange : int * int -> System.Collections.Immutable.IImmutableList<'T>
Function RemoveRange (index As Integer, count As Integer) As IImmutableList(Of T) Implements IImmutableList(Of T).RemoveRange
パラメーター
- index
- Int32
削除する要素の範囲の開始インデックス。
- count
- Int32
削除する要素の数を指定します。
戻り値
要素が削除された新しいリスト。
実装
注釈
このメンバーは、明示的なインターフェイス メンバーの実装です。 これは、ImmutableList<T> のインスタンスが IImmutableList<T> インターフェイスにキャストされる場合のみ、使用できます。
適用対象
.NET