array_max_ext
(and similar for other array functions)
#102
Labels
feature ✨
For feature requests and implementations
The function array_max (already implemented) returns the maximum value in the array.
It would make sense to offer
array_max_ext
which does the exact same thing,but returns an array containing the maximum value as first entry and the index of this value as second entry.
A similar extension is possible for
array_min
,array_mean
,array_sum
andarray_median
.Here is a possible implementation:
The text was updated successfully, but these errors were encountered: