Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
38 additions
and 1 deletion.
@@ -0,0 +1,10 @@ | ||
{ | ||
"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"} | ||
] | ||
} |