List.IsEmpty
Liste boşsa, doğru değerini döndürür.
Syntax
List.IsEmpty(
list as list
) as logical
Remarks
list
listesi değer içermiyorsa (uzunluk 0) true
döndürür. Liste değer içeriyorsa (uzunluk > 0) false
döndürür.
Examples
Example #1
{} listesinin boş olup olmadığını bulur.
List.IsEmpty({})
Result:
true
Example #2
{1, 2} listesinin boş olup olmadığını bulur.
List.IsEmpty({1, 2})
Result:
false
Category
List.Information