mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -05:00
9 lines
393 B
Plaintext
9 lines
393 B
Plaintext
{
|
|
"name": "map_prefix_keys",
|
|
"type": "function",
|
|
"groups": ["Maps"],
|
|
"description": "Returns a map with all keys prefixed by a given string.",
|
|
"arguments": [ {"arg":"map","description":"a map"}, {"arg":"prefix","description":"a string"}],
|
|
"examples": [ { "expression":"map_prefix_keys(map('1','one','2','two'), 'prefix-')", "returns":"{ 'prefix-1': 'one', 'prefix-2': 'two' }"}]
|
|
}
|