Skip to content

Commit

Permalink
added help jsons
Browse files Browse the repository at this point in the history
  • Loading branch information
uclaros authored and nyalldawson committed Dec 28, 2020
1 parent 0a5f492 commit d24f9a1
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions resources/function_help/json/array_max
@@ -0,0 +1,8 @@
{
"name": "array_max",
"type": "function",
"groups": ["Arrays"],
"description": "Returns the maximum value of an array.",
"arguments": [ {"arg":"array","description":"an array"} ],
"examples": [ { "expression":"array_max(array(0,42,4,2))", "returns":"42"}]
}
8 changes: 8 additions & 0 deletions resources/function_help/json/array_min
@@ -0,0 +1,8 @@
{
"name": "array_min",
"type": "function",
"groups": ["Arrays"],
"description": "Returns the minimum value of an array.",
"arguments": [ {"arg":"array","description":"an array"} ],
"examples": [ { "expression":"array_min(array(43,42,54))", "returns":"42"}]
}

0 comments on commit d24f9a1

Please sign in to comment.