mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-22 00:06:12 -05:00
19 lines
465 B
Plaintext
19 lines
465 B
Plaintext
{
|
|
"name": "map_delete",
|
|
"type": "function",
|
|
"groups": ["Maps"],
|
|
"description": "Returns a map with the given key and its corresponding value deleted.",
|
|
"arguments": [{
|
|
"arg": "map",
|
|
"description": "a map"
|
|
}, {
|
|
"arg": "key",
|
|
"description": "the key to delete"
|
|
}],
|
|
"examples": [{
|
|
"expression": "map_delete(map('1','one','2','two'),'2')",
|
|
"returns": "{ '1': 'one' }"
|
|
}],
|
|
"tags": ["deleted", "corresponding", "map", "key"]
|
|
}
|