2020-07-02 15:03:16 +10:00

10 lines
387 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' }"}]
}