List.AllTrue
통사론
List.AllTrue(list as list) as logical
소개
list
목록의 모든 식이 true이면 true를 반환합니다.
예제 1
목록 {true, true, 2> 0}의 모든 식이 true인지 확인합니다.
사용량
List.AllTrue({true, true, 2 > 0})
출력
true
예제 2
목록 {true, true, 2< 0}의 모든 식이 true인지 확인합니다.
사용량
List.AllTrue({true, false, 2 < 0})
출력
false