2020-12-29 08:16:52 +10:00

11 lines
345 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"}
]
}