2015-06-11 12:02:27 +10:00
|
|
|
{
|
2015-09-20 17:12:43 +02:00
|
|
|
"name": "max",
|
|
|
|
"type": "function",
|
2020-07-02 01:46:48 +01:00
|
|
|
"groups": ["Math"],
|
2015-06-11 12:02:27 +10:00
|
|
|
"description": "Returns the largest value in a set of values.",
|
|
|
|
"variableLenArguments": true,
|
2015-09-20 17:12:43 +02:00
|
|
|
"arguments": [
|
|
|
|
{"arg":"value1", "syntaxOnly": true},
|
|
|
|
{"arg":"value2", "syntaxOnly": true},
|
|
|
|
{"arg":"value", "descOnly": true, "description":"a number"}],
|
2018-01-03 06:57:10 +01:00
|
|
|
"examples": [
|
|
|
|
{ "expression":"max(2,10.2,5.5)", "returns":"10.2"},
|
|
|
|
{ "expression":"max(20.5,NULL,6.2)", "returns":"20.5"}]
|
2015-06-11 12:02:27 +10:00
|
|
|
}
|