Note
Ang pag-access sa pahinang ito ay nangangailangan ng pahintulot. Maaari mong subukang mag-sign in o magpalit ng mga direktoryo.
Ang pag-access sa pahinang ito ay nangangailangan ng pahintulot. Maaari mong subukang baguhin ang mga direktoryo.
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