Notiz
Zougrëff op dës Säit erfuerdert Autorisatioun. Dir kënnt probéieren, Iech unzemellen oder Verzeechnesser ze änneren.
Zougrëff op dës Säit erfuerdert Autorisatioun. Dir kënnt probéieren, Verzeechnesser ze änneren.
Syntax
List.IsEmpty(list as list) as logical
About
Returns true if the list, list, contains no values (length 0). If the list contains values (length > 0), returns false.
Example 1
Find if the list {} is empty.
Usage
List.IsEmpty({})
Output
true
Example 2
Find if the list {1, 2} is empty.
Usage
List.IsEmpty({1, 2})
Output
false