ImmutableList<T>.FindAll(Predicate<T>) Method

Definition

Retrieves all the elements that match the conditions defined by the specified predicate.

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)

Parameters

match
Predicate<T>

The delegate that defines the conditions of the elements to search for.

Returns

An immutable list that contains all the elements that match the conditions defined by the specified predicate, if found; otherwise, an empty immutable list.

Applies to