up previous next
IsEmpty    --    checks if a list is empty


Syntax
IsEmpty(L: LIST): BOOL

Description
This function tests whether L is empty; it is equivalent to L = [].

Example
/**/  L := [1.2];
/**/  IsEmpty(L);
false
/**/  L = [];
false

See Also