ImmutableArray<T>.RemoveRange Método

Definição

Sobrecargas

RemoveRange(IEnumerable<T>)

Remove os itens especificados dessa matriz.

RemoveRange(ImmutableArray<T>)

Remove os valores especificados dessa lista.

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

Remove os itens especificados dessa matriz.

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

Remove os itens especificados dessa lista.

RemoveRange(Int32, Int32)

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

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

Remove os valores especificados dessa lista.

RemoveRange(T[], IEqualityComparer<T>)

Remove os valores especificados dessa lista.

RemoveRange(IEnumerable<T>)

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

Remove os itens especificados dessa matriz.

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>

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

Retornos

Uma nova matriz com os elementos removidos.

Aplica-se a

RemoveRange(ImmutableArray<T>)

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

Remove os valores especificados dessa lista.

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>

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

Retornos

Uma nova lista com os elementos removidos.

Aplica-se a

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

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

Remove os itens especificados dessa matriz.

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>

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.

Aplica-se a

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

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

Remove os itens especificados dessa lista.

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>

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.

Aplica-se a

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.

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

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

length
Int32

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

Retornos

A nova matriz com os elementos especificados removidos.

Aplica-se a

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

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

Remove os valores especificados dessa lista.

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)

Parâmetros

items
ReadOnlySpan<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 lista com os elementos removidos.

Aplica-se a

RemoveRange(T[], IEqualityComparer<T>)

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

Remove os valores especificados dessa lista.

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)

Parâmetros

items
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 lista com os elementos removidos.

Aplica-se a