A mapping library for Go.
A mapping library for Go.
go get github.com/theantichris/mapping
Maps an array to another array concurrently using goroutines.
// result: []int{2,3,4}
result, err := ConcurrentMap([]int{1,2,3}, func(num int) int { return num+1 })
go test
go test -bench=.