ImmutableList<T>.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>

검색할 요소의 조건을 정의하는 대리자입니다.

반환

Boolean

지정된 조건자에 정의된 조건과 일치하는 요소가 변경할 수 없는 목록에 하나 이상 포함되어 있으면 true이고, 그렇지 않으면 false입니다.

적용 대상