You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
wrap errors so that caller's can unwrap the error (#15)
* use uber's multierr so that caller's can unwrap the error
* don't use uber's multierr
* added test case where there is no error
Add CancelableParallel (#9)
* Add CancelableParallel.
CancelableParallel is similar to Parallel, except it passes a
context.Context to the worker functions, and cancels the context as soon
as a worker function returns with an error.
* Use a timer in the test so it finishes faster