fold
This commit is contained in:
parent
a1fd7794e7
commit
4476140fd8
17
fold.go
17
fold.go
|
@ -1,9 +1,22 @@
|
||||||
package lambda
|
package lambda
|
||||||
|
|
||||||
func Foldl[T any](xs []T, fx func(T, T) T) T {
|
func Foldl[T any](xs []T, fx func(T, T) T) T {
|
||||||
return *new(T)
|
if len(xs) < 1 {
|
||||||
|
return *new(T)
|
||||||
|
}
|
||||||
|
for i := 1; i < len(xs); i++ {
|
||||||
|
xs[0] = fx(xs[0], xs[i])
|
||||||
|
}
|
||||||
|
return xs[0]
|
||||||
}
|
}
|
||||||
|
|
||||||
func Foldr[T any](xs []T, fx func(T, T) T) T {
|
func Foldr[T any](xs []T, fx func(T, T) T) T {
|
||||||
return *new(T)
|
if len(xs) < 1 {
|
||||||
|
return *new(T)
|
||||||
|
}
|
||||||
|
li := len(xs) - 1
|
||||||
|
for i := li - 1; i >= 0; i-- {
|
||||||
|
xs[li] = fx(xs[li], xs[i])
|
||||||
|
}
|
||||||
|
return xs[li]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue