ImmutableArray<T>.IImmutableList<T>.RemoveRange Método
Definición
Sobrecargas
IImmutableList<T>.RemoveRange(IEnumerable<T>, IEqualityComparer<T>) |
Quita los elementos especificados de esta matriz.Removes the specified items from this array. |
IImmutableList<T>.RemoveRange(Int32, Int32) |
Devuelve una matriz con los elementos de la posición especificada quitados.Returns an array with the elements at the specified position removed. |
IImmutableList<T>.RemoveRange(IEnumerable<T>, IEqualityComparer<T>)
Quita los elementos especificados de esta matriz.Removes the specified items from this array.
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>
Elementos a quitar si se encuentran coincidencias en esta lista.The items to remove if matches are found in this list.
- equalityComparer
- IEqualityComparer<T>
Comparador de igualdad que se va a usar en la búsqueda.The equality comparer to use in the search.
Devoluciones
Nueva matriz con los elementos quitados.A new array with the elements removed.
Implementaciones
Comentarios
Este miembro es una implementación explícita de un miembro de interfaz.This member is an explicit interface member implementation. Solo se puede utilizar cuando la instancia de ImmutableArray<T> se convierte en una interfaz IImmutableList<T>.It can be used only when the ImmutableArray<T> instance is cast to an IImmutableList<T> interface.
Se aplica a
IImmutableList<T>.RemoveRange(Int32, Int32)
Devuelve una matriz con los elementos de la posición especificada quitados.Returns an array with the elements at the specified position removed.
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
Índice de base 0 del elemento de inicio a quitar de la matriz.The 0-based index of the starting element to remove from the array.
- count
- Int32
Número de elementos que se va a quitar de la matriz.The number of elements to remove from the array.
Devoluciones
Nueva matriz con los elemento especificados quitados.The new array with the specified elements removed.
Implementaciones
Comentarios
Este miembro es una implementación explícita de un miembro de interfaz.This member is an explicit interface member implementation. Solo se puede utilizar cuando la instancia de ImmutableArray<T> se convierte en una interfaz IImmutableList<T>.It can be used only when the ImmutableArray<T> instance is cast to an IImmutableList<T> interface.