List.AllTrue
List.AllTrue(list as list) as logical
Listedeki tüm ifadeler list
doğruysa, doğru döndürür.
{true, true, 2 > 0} listesindeki tüm ifadelerin doğru olup olmadığını belirleyin.
Kullanım
List.AllTrue({true, true, 2 > 0})
Çıkış
true
{true, true, 2 < 0} listesindeki tüm ifadelerin doğru olup olmadığını belirleyin.
Kullanım
List.AllTrue({true, false, 2 < 0})
Çıkış
false