ImmutableArray<T>.IImmutableList<T>.RemoveRange Método

Definição

Sobrecargas

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

Remove os itens especificados dessa matriz.

IImmutableList<T>.RemoveRange(Int32, Int32)

Retorna uma matriz com os elementos removidos na posição especificada.

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

Origem:
ImmutableArray_1.cs
Origem:
ImmutableArray_1.cs
Origem:
ImmutableArray_1.cs

Remove os itens especificados dessa matriz.

 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

Parâmetros

items
IEnumerable<T>

Os itens a serem removidos se correspondências forem encontradas nessa lista.

equalityComparer
IEqualityComparer<T>

O comparador de igualdade a ser usado na pesquisa.

Retornos

Uma nova matriz com os elementos removidos.

Implementações

Comentários

Este membro é uma implementação do membro de interface explícita. Ele só pode ser usado quando a instância de ImmutableArray<T> é convertida em uma interface de IImmutableList<T>.

Aplica-se a

IImmutableList<T>.RemoveRange(Int32, Int32)

Origem:
ImmutableArray_1.cs
Origem:
ImmutableArray_1.cs
Origem:
ImmutableArray_1.cs

Retorna uma matriz com os elementos removidos na posição especificada.

 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

Parâmetros

index
Int32

O índice baseado em zero do elemento inicial a ser removido da matriz.

count
Int32

O número de elementos a serem removidos da matriz.

Retornos

A nova matriz com os elementos especificados removidos.

Implementações

Comentários

Este membro é uma implementação do membro de interface explícita. Ele só pode ser usado quando a instância de ImmutableArray<T> é convertida em uma interface de IImmutableList<T>.

Aplica-se a