mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -05:00
10 lines
410 B
Plaintext
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' }"}]
|
|
}
|