mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -05:00
16 lines
328 B
Plaintext
16 lines
328 B
Plaintext
{
|
|
"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"]
|
|
}
|