Whatever message this page gives is out now! Go check it out!
set.isEmpty()| Parameter | Description |
|---|---|
| — | None. |
cfscript (syntax: set.isEmpty()).
<cfscript>
s = setNew();
writeOutput(s.isEmpty()); // true
s.add("x");
writeOutput(s.isEmpty()); // false
</cfscript>