This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//go:generate pipeliner map(func(string) (string, error) concurrently as concErrMap into conc_err_map.go | |
func concErrMap(concurrency int, fn func(string) (string, error), in <-chan string) (<-chan string, <-chan error) { | |
out := make(chan string) | |
errc := make(chan error, concurrency) | |
done := make(chan struct{}) | |
go func() { | |
defer close(out) | |
defer close(errc) | |
wg := sync.WaitGroup{} | |
wg.Add(concurrency) |