ImmutableList<T>.Builder.FindAll(Predicate<T>) Méthode

Définition

Récupère tous les éléments qui correspondent aux conditions définies par le prédicat spécifié.

public:
 virtual System::Collections::Immutable::ImmutableList<T> ^ FindAll(Predicate<T> ^ match);
public:
 System::Collections::Immutable::ImmutableList<T> ^ FindAll(Predicate<T> ^ match);
public System.Collections.Immutable.ImmutableList<T> FindAll (Predicate<T> match);
abstract member FindAll : Predicate<'T> -> System.Collections.Immutable.ImmutableList<'T>
override this.FindAll : Predicate<'T> -> System.Collections.Immutable.ImmutableList<'T>
member this.FindAll : Predicate<'T> -> System.Collections.Immutable.ImmutableList<'T>
Public Function FindAll (match As Predicate(Of T)) As ImmutableList(Of T)

Paramètres

match
Predicate<T>

Délégué qui définit les conditions des éléments à rechercher.

Retours

ImmutableList<T>

Liste immuable contenant tous les éléments qui correspondent aux conditions définies par le prédicat spécifié, le cas échéant ; sinon, une liste immuable vide.

S’applique à