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

19 lines
415 B
Plaintext
Raw Normal View History

{
"name": "map_exist",
"type": "function",
2020-07-02 01:46:48 +01:00
"groups": ["Maps"],
"description": "Returns TRUE if the given key exists in the map.",
"arguments": [{
"arg": "map",
"description": "a map"
}, {
"arg": "key",
"description": "the key to lookup"
}],
"examples": [{
"expression": "map_exist(map('1','one','2','two'),'3')",
2022-03-21 09:20:52 +01:00
"returns": "FALSE"
}],
"tags": ["map", "exists", "key"]
}