ImmutableList<T>.TrueForAll(Predicate<T>) 메서드

정의

변경할 수 없는 목록의 모든 요소가 지정한 조건자에 정의된 조건과 일치하는지를 확인합니다.

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

매개 변수

match
Predicate<T>

요소에 대해 확인할 조건을 정의하는 대리자입니다.

반환

변경할 수 없는 목록의 모든 요소가 지정된 조건자에 정의된 조건과 일치하면 true이고, 그렇지 않으면 false입니다. 목록에 요소가 없으면 반환 값은 true입니다.

적용 대상