mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-22 00:06:12 -05:00
16 lines
426 B
Plaintext
16 lines
426 B
Plaintext
{
|
|
"name": "array_sum",
|
|
"type": "function",
|
|
"groups": ["Arrays"],
|
|
"description": "Returns the sum of arithmetic values in an array. Non numeric values in the array are ignored.",
|
|
"arguments": [{
|
|
"arg": "array",
|
|
"description": "an array"
|
|
}],
|
|
"examples": [{
|
|
"expression": "array_sum(array(0,1,39.4,1.6,'a'))",
|
|
"returns": "42.0"
|
|
}],
|
|
"tags": ["array", "ignored", "numeric", "arithmetic", "sum"]
|
|
}
|