閱讀英文

共用方式為


List.MatchesAny

語法

List.MatchesAny(list as list, condition as function) as logical

關於

若清單 true 中有任何值滿足條件函式 condition,則傳回 list否則傳回 false

範例 1

找出清單 {9, 10, 11} 中是否有任何值大於 10。

使用方式

List.MatchesAny({9, 10, 11}, each _  > 10)

輸出

true

範例 2

找出清單 {1, 2, 3} 中是否有任何值大於 10。

使用方式

List.MatchesAny({1, 2, 3}, each _  > 10)

輸出

false