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>

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

戻り値

指定された述語によって定義された条件と一致する要素が少なくとも 1 つ、変更できないリストに存在する場合は true。それ以外の場合は false

適用対象