EMPTY
The EMPTY
function checks the contents of a set and returns a Boolean True if the set is empty, False otherwise.
For example, this snippet:
if (EMPTY(setOne)) {
INSERT(setOne, "1.07");
}
adds domain 1.07
to setOne
if it's empty.
The syntax is:
EMPTY(set)
where set
is a set variable.