lens @ 9ba05d26ee2382f3191e25ae7af5d462ba2a35e4

1package list
2
3func Map[V any, T any](source []V, fun func(V) T) []T {
4	result := make([]T, 0, len(source))
5	for _, s := range source {
6		result = append(result, fun(s))
7	}
8	return result
9}