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
See Also
List Constructors