Nota
Capaian ke halaman ini memerlukan kebenaran. Anda boleh cuba mendaftar masuk atau menukar direktori.
Capaian ke halaman ini memerlukan kebenaran. Anda boleh cuba menukar direktori.
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