ImmutableArray<T>.RemoveAll(Predicate<T>) Método

Definición

Quita todos los elementos de la matriz que cumplen la condición especificada.

public:
 System::Collections::Immutable::ImmutableArray<T> RemoveAll(Predicate<T> ^ match);
public System.Collections.Immutable.ImmutableArray<T> RemoveAll (Predicate<T> match);
member this.RemoveAll : Predicate<'T> -> System.Collections.Immutable.ImmutableArray<'T>
Public Function RemoveAll (match As Predicate(Of T)) As ImmutableArray(Of T)

Parámetros

match
Predicate<T>

Delegado que define las condiciones de los elementos que se van a quitar.

Devoluciones

Nueva matriz con los elementos que cumplen la condición especificada quitados.

Se aplica a