| Operator Type: | Property |
| Operator Scope of Action: | Item |
| Operator Purpose: | Boolean |
List.empty()
New to v5.7.0, this returns a Boolean depending on whether the list is empty. In this context Set and List type can be regarded as interchangeable. If empty, the return value is true, if the attribute has content then false is returned.
$MyList = "hello;world"; $MyBoolean = $MyList.empty;
$MyBoolean is now false.
