ImmutableArray<T>.IImmutableList<T>.RemoveRange Metoda

Definice

Přetížení

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

Odebere zadané položky z tohoto pole.

IImmutableList<T>.RemoveRange(Int32, Int32)

Vrátí matici s odebranými prvky na zadané pozici.

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

Zdroj:
ImmutableArray_1.cs
Zdroj:
ImmutableArray_1.cs
Zdroj:
ImmutableArray_1.cs

Odebere zadané položky z tohoto pole.

 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

Parametry

items
IEnumerable<T>

Položky, které se mají odebrat, pokud jsou v tomto seznamu nalezeny shody.

equalityComparer
IEqualityComparer<T>

Porovnávače rovnosti, který se má použít při hledání.

Návraty

Nové pole s odebranými prvky.

Implementuje

Poznámky

Tento člen je explicitní implementace členu rozhraní. Lze jej použít pouze v případě, že ImmutableArray<T> je instance přetypovaná na IImmutableList<T> rozhraní.

Platí pro

IImmutableList<T>.RemoveRange(Int32, Int32)

Zdroj:
ImmutableArray_1.cs
Zdroj:
ImmutableArray_1.cs
Zdroj:
ImmutableArray_1.cs

Vrátí matici s odebranými prvky na zadané pozici.

 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

Parametry

index
Int32

Index od 0 počátečního prvku, který se má z pole odebrat.

count
Int32

Počet prvků, které mají být odebrány z pole.

Návraty

Nové pole s odebranými zadanými prvky.

Implementuje

Poznámky

Tento člen je explicitní implementace členu rozhraní. Lze jej použít pouze v případě, že ImmutableArray<T> je instance přetypovaná na IImmutableList<T> rozhraní.

Platí pro