Returns true if the list is empty.
function (
list
as list) as logical
Returns true
if the list, list
, contains no values (length 0). If the list contains values (length > 0), returns false
.
List.Information
Find if the list {} is empty.
List.IsEmpty({})
true
Find if the list {1, 2} is empty.
List.IsEmpty({1, 2})
false