multierr
multierr copied to clipboard
Combine one or more Go errors together
Thanks for putting together this library! The behavior I found surprising was that if you do not use the less-common pattern where you define variables in the function return signature,...
Currently, errors produced by this package implement `fmt.Formatter` with special support for the `"%+v"` format. We should consider removing this support, since it doesn't actually add any information (which is...
We previously dropped support for integrating with error implementations which expose the underlying list of errors via some interface like, type MultiError interface { Causes() []error } // Type and...
Hi! I have an in-review proposal to add support for wrapping multiple errors to the standard library. The latest version of the proposal is: https://github.com/golang/go/issues/53435#issuecomment-1191752789 This proposal is intended to...