List.MatchesAny
List.MatchesAny(list as list, condition as function) as logical
若清單 true
中有任何值滿足條件函式 condition
,則傳回 list
否則傳回 false
。
找出清單 {9, 10, 11} 中是否有任何值大於 10。
使用方式
List.MatchesAny({9, 10, 11}, each _ > 10)
輸出
true
找出清單 {1, 2, 3} 中是否有任何值大於 10。
使用方式
List.MatchesAny({1, 2, 3}, each _ > 10)
輸出
false