Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
465 B
Plaintext
Raw Normal View History

{
"name": "map_delete",
"type": "function",
2020-07-02 01:46:48 +01:00
"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"]
}