ImmutableArray<T>.IImmutableList<T>.RemoveRange メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
IImmutableList<T>.RemoveRange(IEnumerable<T>, IEqualityComparer<T>) |
指定した項目をこの配列から削除します。 |
IImmutableList<T>.RemoveRange(Int32, Int32) |
指定した位置の要素が削除された配列を返します。 |
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>
検索に使用する等値比較子。
戻り値
要素が削除された新しい配列。
実装
注釈
このメンバーは、明示的なインターフェイス メンバーの実装です。 これは、ImmutableArray<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
配列から削除する開始要素の 0 から始まるインデックス。
- count
- Int32
配列から削除する要素の数。
戻り値
指定した要素が削除された新しい配列。
実装
注釈
このメンバーは、明示的なインターフェイス メンバーの実装です。 これは、ImmutableArray<T> のインスタンスが IImmutableList<T> インターフェイスにキャストされる場合のみ、使用できます。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET