IImmutableList<T>.RemoveRange メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
RemoveRange(IEnumerable<T>, IEqualityComparer<T>) |
指定したオブジェクトをリストから削除します。 |
RemoveRange(Int32, Int32) |
IImmutableList<T> から要素の範囲を削除します。 |
RemoveRange(IEnumerable<T>, IEqualityComparer<T>)
指定したオブジェクトをリストから削除します。
public:
System::Collections::Immutable::IImmutableList<T> ^ RemoveRange(System::Collections::Generic::IEnumerable<T> ^ items, System::Collections::Generic::IEqualityComparer<T> ^ equalityComparer);
public System.Collections.Immutable.IImmutableList<T> RemoveRange (System.Collections.Generic.IEnumerable<T> items, System.Collections.Generic.IEqualityComparer<T> equalityComparer);
public System.Collections.Immutable.IImmutableList<T> RemoveRange (System.Collections.Generic.IEnumerable<T> items, System.Collections.Generic.IEqualityComparer<T>? equalityComparer);
abstract member RemoveRange : seq<'T> * System.Collections.Generic.IEqualityComparer<'T> -> System.Collections.Immutable.IImmutableList<'T>
Public Function RemoveRange (items As IEnumerable(Of T), equalityComparer As IEqualityComparer(Of T)) As IImmutableList(Of T)
パラメーター
- items
- IEnumerable<T>
リストから削除するオブジェクト。
- equalityComparer
- IEqualityComparer<T>
items
がリスト内のいずれかのオブジェクトと一致するかどうかを判断するために使用する等値比較子。
戻り値
items
がリスト内のオブジェクトと一致した場合は、指定したオブジェクトが削除された、新しい変更できないリスト。
適用対象
RemoveRange(Int32, Int32)
IImmutableList<T> から要素の範囲を削除します。
public:
System::Collections::Immutable::IImmutableList<T> ^ RemoveRange(int index, int count);
public System.Collections.Immutable.IImmutableList<T> RemoveRange (int index, int count);
abstract member RemoveRange : int * int -> System.Collections.Immutable.IImmutableList<'T>
Public Function RemoveRange (index As Integer, count As Integer) As IImmutableList(Of T)
パラメーター
- index
- Int32
削除する要素の範囲の開始位置を示す 0 から始まるインデックス。
- count
- Int32
削除する要素の数を指定します。
戻り値
要素が削除された新しい変更できないリスト。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET