ImmutableArray<T>.RemoveRange メソッド

定義

オーバーロード

RemoveRange(IEnumerable<T>)

指定した項目をこの配列から削除します。

RemoveRange(ImmutableArray<T>)

指定した値をこのリストから削除します。

RemoveRange(IEnumerable<T>, IEqualityComparer<T>)

指定した項目をこの配列から削除します。

RemoveRange(ImmutableArray<T>, IEqualityComparer<T>)

指定した項目をこのリストから削除します。

RemoveRange(Int32, Int32)

指定した位置の要素が削除された配列を返します。

RemoveRange(ReadOnlySpan<T>, IEqualityComparer<T>)

指定した値をこのリストから削除します。

RemoveRange(T[], IEqualityComparer<T>)

指定した値をこのリストから削除します。

RemoveRange(IEnumerable<T>)

ソース:
ImmutableArray_1.cs
ソース:
ImmutableArray_1.cs
ソース:
ImmutableArray_1.cs

指定した項目をこの配列から削除します。

public:
 System::Collections::Immutable::ImmutableArray<T> RemoveRange(System::Collections::Generic::IEnumerable<T> ^ items);
public System.Collections.Immutable.ImmutableArray<T> RemoveRange (System.Collections.Generic.IEnumerable<T> items);
member this.RemoveRange : seq<'T> -> System.Collections.Immutable.ImmutableArray<'T>
Public Function RemoveRange (items As IEnumerable(Of T)) As ImmutableArray(Of T)

パラメーター

items
IEnumerable<T>

このリストに一致するものが見つかった場合に削除する項目。

戻り値

要素が削除された新しい配列。

適用対象

RemoveRange(ImmutableArray<T>)

ソース:
ImmutableArray_1.cs
ソース:
ImmutableArray_1.cs
ソース:
ImmutableArray_1.cs

指定した値をこのリストから削除します。

public:
 System::Collections::Immutable::ImmutableArray<T> RemoveRange(System::Collections::Immutable::ImmutableArray<T> items);
public System.Collections.Immutable.ImmutableArray<T> RemoveRange (System.Collections.Immutable.ImmutableArray<T> items);
member this.RemoveRange : System.Collections.Immutable.ImmutableArray<'T> -> System.Collections.Immutable.ImmutableArray<'T>
Public Function RemoveRange (items As ImmutableArray(Of T)) As ImmutableArray(Of T)

パラメーター

items
ImmutableArray<T>

このリストに一致するものが見つかった場合に削除する項目。

戻り値

要素が削除された新しいリスト。

適用対象

RemoveRange(IEnumerable<T>, IEqualityComparer<T>)

ソース:
ImmutableArray_1.cs
ソース:
ImmutableArray_1.cs
ソース:
ImmutableArray_1.cs

指定した項目をこの配列から削除します。

public:
 System::Collections::Immutable::ImmutableArray<T> RemoveRange(System::Collections::Generic::IEnumerable<T> ^ items, System::Collections::Generic::IEqualityComparer<T> ^ equalityComparer);
public System.Collections.Immutable.ImmutableArray<T> RemoveRange (System.Collections.Generic.IEnumerable<T> items, System.Collections.Generic.IEqualityComparer<T> equalityComparer);
public System.Collections.Immutable.ImmutableArray<T> RemoveRange (System.Collections.Generic.IEnumerable<T> items, System.Collections.Generic.IEqualityComparer<T>? equalityComparer);
member this.RemoveRange : seq<'T> * System.Collections.Generic.IEqualityComparer<'T> -> System.Collections.Immutable.ImmutableArray<'T>
Public Function RemoveRange (items As IEnumerable(Of T), equalityComparer As IEqualityComparer(Of T)) As ImmutableArray(Of T)

パラメーター

items
IEnumerable<T>

このリストに一致するものが見つかった場合に削除する項目。

equalityComparer
IEqualityComparer<T>

検索に使用する等値比較子。

戻り値

要素が削除された新しい配列。

適用対象

RemoveRange(ImmutableArray<T>, IEqualityComparer<T>)

ソース:
ImmutableArray_1.cs
ソース:
ImmutableArray_1.cs
ソース:
ImmutableArray_1.cs

指定した項目をこのリストから削除します。

public:
 System::Collections::Immutable::ImmutableArray<T> RemoveRange(System::Collections::Immutable::ImmutableArray<T> items, System::Collections::Generic::IEqualityComparer<T> ^ equalityComparer);
public System.Collections.Immutable.ImmutableArray<T> RemoveRange (System.Collections.Immutable.ImmutableArray<T> items, System.Collections.Generic.IEqualityComparer<T> equalityComparer);
public System.Collections.Immutable.ImmutableArray<T> RemoveRange (System.Collections.Immutable.ImmutableArray<T> items, System.Collections.Generic.IEqualityComparer<T>? equalityComparer);
member this.RemoveRange : System.Collections.Immutable.ImmutableArray<'T> * System.Collections.Generic.IEqualityComparer<'T> -> System.Collections.Immutable.ImmutableArray<'T>
Public Function RemoveRange (items As ImmutableArray(Of T), equalityComparer As IEqualityComparer(Of T)) As ImmutableArray(Of T)

パラメーター

items
ImmutableArray<T>

このリストに一致するものが見つかった場合に削除する項目。

equalityComparer
IEqualityComparer<T>

検索に使用する等値比較子。

戻り値

要素が削除された新しい配列。

適用対象

RemoveRange(Int32, Int32)

ソース:
ImmutableArray_1.cs
ソース:
ImmutableArray_1.cs
ソース:
ImmutableArray_1.cs

指定した位置の要素が削除された配列を返します。

public:
 System::Collections::Immutable::ImmutableArray<T> RemoveRange(int index, int length);
public System.Collections.Immutable.ImmutableArray<T> RemoveRange (int index, int length);
member this.RemoveRange : int * int -> System.Collections.Immutable.ImmutableArray<'T>
Public Function RemoveRange (index As Integer, length As Integer) As ImmutableArray(Of T)

パラメーター

index
Int32

配列から削除する開始要素の 0 から始まるインデックス。

length
Int32

配列から削除する要素の数。

戻り値

指定した要素が削除された新しい配列。

適用対象

RemoveRange(ReadOnlySpan<T>, IEqualityComparer<T>)

ソース:
ImmutableArray_1.cs
ソース:
ImmutableArray_1.cs
ソース:
ImmutableArray_1.cs

指定した値をこのリストから削除します。

public System.Collections.Immutable.ImmutableArray<T> RemoveRange (ReadOnlySpan<T> items, System.Collections.Generic.IEqualityComparer<T>? equalityComparer = default);
member this.RemoveRange : ReadOnlySpan<'T> * System.Collections.Generic.IEqualityComparer<'T> -> System.Collections.Immutable.ImmutableArray<'T>
Public Function RemoveRange (items As ReadOnlySpan(Of T), Optional equalityComparer As IEqualityComparer(Of T) = Nothing) As ImmutableArray(Of T)

パラメーター

items
ReadOnlySpan<T>

このリストに一致するものが見つかった場合に削除する項目。

equalityComparer
IEqualityComparer<T>

検索に使用する等値比較子。

戻り値

要素が削除された新しいリスト。

適用対象

RemoveRange(T[], IEqualityComparer<T>)

ソース:
ImmutableArray_1.cs
ソース:
ImmutableArray_1.cs
ソース:
ImmutableArray_1.cs

指定した値をこのリストから削除します。

public System.Collections.Immutable.ImmutableArray<T> RemoveRange (T[] items, System.Collections.Generic.IEqualityComparer<T>? equalityComparer = default);
member this.RemoveRange : 'T[] * System.Collections.Generic.IEqualityComparer<'T> -> System.Collections.Immutable.ImmutableArray<'T>
Public Function RemoveRange (items As T(), Optional equalityComparer As IEqualityComparer(Of T) = Nothing) As ImmutableArray(Of T)

パラメーター

items
T[]

このリストに一致するものが見つかった場合に削除する項目。

equalityComparer
IEqualityComparer<T>

検索に使用する等値比較子。

戻り値

要素が削除された新しいリスト。

適用対象