added Reduce method

This commit is contained in:
milarin
2023-03-09 14:34:44 +01:00
parent 55928776b4
commit ab6e6684f8
4 changed files with 31 additions and 3 deletions

15
reduce.go Normal file
View File

@ -0,0 +1,15 @@
package slices
import "git.milar.in/milarin/gmath"
func Reduce[T, R any](slice []T, reducer func(current R, v T) R) R {
res := new(R)
Each(slice, func(v T) {
*res = reducer(*res, v)
})
return *res
}
func SumReducer[N gmath.Number](a, b N) N {
return a + b
}