10 lines
346 B
Plaintext
Raw Normal View History

{
"name": "map_get",
"type": "function",
2020-07-02 01:46:48 +01:00
"groups": ["Maps"],
"description": "Returns the value of a map, given it's key.",
"arguments": [ {"arg":"map","description":"a map"},
{"arg":"key","description":"the key to lookup"}],
"examples": [ { "expression":"map_get(map('1','one','2','two'),'2')", "returns":"'two'"}]
}