add new map nil

This commit is contained in:
a 2022-09-02 23:08:36 -05:00
parent 4b8ccf12b4
commit 72d2bd6dc0
1 changed files with 6 additions and 0 deletions

6
map.go
View File

@ -1,5 +1,11 @@
package lambda
func MapNil[T any](xs []T, fx func(T)) {
for _, v := range xs {
fx(v)
}
}
func Map[T any](xs []T, fx func(T) T) []T {
for i, v := range xs {
xs[i] = fx(v)