ImmutableList<T>.Builder.Exists(Predicate<T>) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
判斷不可變的清單是否包含符合指定述詞所定義之條件的項目。
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
,否則為 false
。