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

16 lines
328 B
Plaintext
Raw Normal View History

2020-12-01 10:43:45 +02:00
{
"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"
}],
"tags": ["array", "maximum"]
2020-12-01 10:43:45 +02:00
}