add to map()
Adds value b with key a into map c. If the map does not exist, it is created.
The return value of the function is always b.
Parameters
Parameter |
Description |
a |
Key value. |
b |
Value to be added. |
c |
Name of the map. Default: "default". |
d |
(optional) "true", if values with set Empty Flag should not be added to map. Default: "false". |
Example
Parameter a |
Parameter b |
Parameter c |
Parameter d |
Result |
Value added to map |
MyKey |
Hallo (Empty Flag not set) |
MyMap |
|
Hallo |
Yes. |
MyKey |
Hello (Empty Flag set) |
MyMap |
false |
Hello |
Yes. |
MyKey |
Hällo (Empty Flag set) |
MyMap |
true |
Hällo |
No. |