2018-08-24 14:04:27 +02:00

10 lines
410 B
Plaintext

{
"name": "map_insert",
"type": "function",
"description": "Returns a map with an added key/value.",
"arguments": [ {"arg":"map","description":"a map"},
{"arg":"key","description":"the key to add"},
{"arg":"value","description":"the value to add"}],
"examples": [ { "expression":"map_insert(map('1','one'),'3','three')", "returns":"{ '1': 'one', '3': 'three' }"}]
}