docs/data/parallel-map.md
Manipulates a slice and transforms it into a slice of another type. The transform is called in parallel and results are written back in the original order.
import (
"strconv"
lop "github.com/samber/lo/parallel"
)
out := lop.Map([]int64{1, 2, 3, 4}, func(x int64, i int) string {
return strconv.FormatInt(x, 10)
})
// []string{"1", "2", "3", "4"}
Parallel execution is useful when the predicate is slow or I/O-bound:
import (
"net/http"
"io"
lop "github.com/samber/lo/parallel"
)
urls := []string{"https://example.com/a", "https://example.com/b"}
pages := lop.Map(urls, func(u string, _ int) string {
resp, _ := http.Get(u)
defer resp.Body.Close()
b, _ := io.ReadAll(resp.Body)
return string(b)
})
// pages keeps the same order as urls