add to list(value a, name of list b, [skip empty c])
Group |
Adds value a into the Named List with name b, even if the value already exists in the list. Note: See also function add to list(unique value a, name of list b, [skip empty c]).
The return value of the function is always a.
Description of Parameters
Parameter |
Description |
a |
Value to be added. |
b |
Name of the list (if the list does not exist, it is created). Default: default |
c |
(optional) true, if values with set Empty Flag should not be added to the list. Default: false. |
Example
Parameter a |
Parameter b |
Parameter c |
Result |
Value Added to List |
Hallo (Empty Flag: false) |
MyList |
Hallo |
Yes. |
|
Hallo (Empty Flag: false) |
MyList |
|
Hallo |
Yes. Note: The list MyList now contains the value Hallo twice. |
Hello (Empty Flag: true) |
MyList |
false |
Hello |
Yes. |
Hällo (Empty Flag: true) |
MyList |
true |
Hällo |
No. |