Operator Type:
Operator Scope of Action:
Operator Purpose:
Operator First Added:
Operator Altered:
Property [other Property type actions]
Item [operators of similar scope]
Non-query Boolean [other Non-query Boolean operators]
Baseline
List.empty()
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.