ImmutableList<T>.Builder.FindAll(Predicate<T>) メソッド

定義

指定した述語によって定義された条件に一致するすべての要素を取得します。

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)

パラメーター

match
Predicate<T>

検索する要素の条件を定義するデリゲート。

返品

指定した述語で定義された条件に一致するすべての要素を含む変更できないリスト (見つかった場合)。それ以外の場合は、空の変更できないリスト。

適用対象