Add missing function help (fix #15264)

This commit is contained in:
Nyall Dawson 2016-07-19 12:12:26 +10:00
parent c7ffdfa5e9
commit 59dc4079a5
2 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,5 @@
{
"name": "Aggregates",
"type": "group",
"description": "Contains functions which aggregate values over layers and fields."
}

View File

@ -0,0 +1,7 @@
{
"name": "char",
"type": "function",
"description": "Returns the character associated with a unicode code.",
"arguments": [ {"arg":"code","description":"a unicode code number"}],
"examples": [ { "expression":"char(81)", "returns":"'Q'"} ]
}