mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-22 00:06:12 -05:00
19 lines
473 B
Plaintext
19 lines
473 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' }"
|
|
}],
|
|
"tags": ["prefixed", "keys", "map"]
|
|
}
|