ImmutableArray<T>.RemoveRange Método
Definición
Sobrecargas
RemoveRange(ImmutableArray<T>, IEqualityComparer<T>) |
Quita los elementos especificados de esta lista.Removes the specified items from this list. |
RemoveRange(IEnumerable<T>, IEqualityComparer<T>) |
Quita los elementos especificados de esta matriz.Removes the specified items from this array. |
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. |
RemoveRange(IEnumerable<T>) |
Quita los elementos especificados de esta matriz.Removes the specified items from this array. |
RemoveRange(ImmutableArray<T>) |
Quita los valores especificados de esta lista.Removes the specified values from this list. |
RemoveRange(ImmutableArray<T>, IEqualityComparer<T>)
Quita los elementos especificados de esta lista.Removes the specified items from this list.
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)
Parámetros
- items
- ImmutableArray<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.
Se aplica a
RemoveRange(IEnumerable<T>, IEqualityComparer<T>)
Quita los elementos especificados de esta matriz.Removes the specified items from this array.
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)
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.
Se aplica a
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.
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)
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.
- length
- 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.
Se aplica a
RemoveRange(IEnumerable<T>)
Quita los elementos especificados de esta matriz.Removes the specified items from this array.
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)
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.
Devoluciones
Nueva matriz con los elementos quitados.A new array with the elements removed.
Se aplica a
RemoveRange(ImmutableArray<T>)
Quita los valores especificados de esta lista.Removes the specified values from this list.
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)
Parámetros
- items
- ImmutableArray<T>
Elementos a quitar si se encuentran coincidencias en esta lista.The items to remove if matches are found in this list.
Devoluciones
Lista nueva con los elementos eliminados.A new list with the elements removed.