array sum_arrays(function(int(0..0) ... :mixed) sum, array ... args)
Applies the function sum columnwise on the elements in the provided arrays. E.g. sum_array(`+,a,b,c) does the same as `+(a[*],b[*],c[*]).
sum_array(`+,a,b,c)
`+(a[*],b[*],c[*])