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

定義

変更できないリストに、指定した述語で定義された条件に一致する要素が含まれているかどうかを判断します。

public:
 virtual bool Exists(Predicate<T> ^ match);
public:
 bool Exists(Predicate<T> ^ match);
public bool Exists(Predicate<T> match);
abstract member Exists : Predicate<'T> -> bool
override this.Exists : Predicate<'T> -> bool
member this.Exists : Predicate<'T> -> bool
Public Function Exists (match As Predicate(Of T)) As Boolean

パラメーター

match
Predicate<T>

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

返品

true 変更できないリストに、指定した述語で定義された条件に一致する 1 つ以上の要素が含まれている場合。それ以外の場合は false

適用対象