package
0.3.0
Repository: https://github.com/sourcegraph/conc.git
Documentation: pkg.go.dev

# Functions

ForEach executes f in parallel over each element in input.
ForEachIdx is the same as ForEach except it also provides the index of the element to the callback.
Map applies f to each element of input, returning the mapped result.
MapErr applies f to each element of the input, returning the mapped result and a combined error of all returned errors.

# Structs

Iterator can be used to configure the behaviour of ForEach and ForEachIdx.