# README
cc
A golang waitgroup with limits and error reporting
Usage:
import github.com/codeclysm/cc
p := cc.New(4)
p.Run(func() error {
return errors.New("fail1")
})
p.Run(func() error {
return errors.New("fail2")
})
p.Run(func() error {
return nil
})
errs := p.Wait() // returns a list of errors [fail1, fail2]
# Type aliases
StoppableFunc is a func that receives a stop channel that when closed broadcasts the need to wrap up and stop the function.