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>

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

반품

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

적용 대상