2016-09-12 10:30:05 +02:00
|
|
|
{
|
|
|
|
"name": "map_concat",
|
|
|
|
"type": "function",
|
2020-07-02 01:46:48 +01:00
|
|
|
"groups": ["Maps"],
|
2016-10-20 18:16:37 +02:00
|
|
|
"description": "Returns a map containing all the entries of the given maps. If two maps contain the same key, the value of the second map is taken.",
|
2016-09-12 10:30:05 +02:00
|
|
|
"variableLenArguments": true,
|
|
|
|
"arguments": [
|
|
|
|
{"arg":"map1", "syntaxOnly": true},
|
|
|
|
{"arg":"map2", "syntaxOnly": true},
|
|
|
|
{"arg":"map", "descOnly": true, "description":"a map"}],
|
2018-08-24 14:04:27 +02:00
|
|
|
"examples": [ { "expression":"map_concat(map('1','one', '2','overridden'),map('2','two', '3','three'))", "returns":"{ '1': 'one, '2': 'two', '3': 'three' }"}
|
2016-09-12 10:30:05 +02:00
|
|
|
]
|
|
|
|
}
|