Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function EvaluateBool: Boolean; | Evaluates all expressions from the list. |
| 2 | function EvaluateBool(Index: Integer): Boolean; | Evaluates expression at the specified index. |
Overload 1: function EvaluateBool: Boolean;
Evaluates all expressions from the list.
Returns: Boolean - the result of the last expression as a single boolean value.
Overload 2: function EvaluateBool(Index: Integer): Boolean;
Evaluates expression at the specified index.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Index | Integer | start index |
Returns: Boolean - the result as a boolean value.