Improve task

This commit is contained in:
世界 2022-08-03 17:07:57 +08:00
parent afbe231237
commit d9ca259bec
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
4 changed files with 128 additions and 152 deletions

View file

@ -13,7 +13,7 @@ type multiError struct {
}
func (e *multiError) Error() string {
return "multi error: (" + strings.Join(F.MapToString(e.errors), " | ") + ")"
return strings.Join(F.MapToString(e.errors), " | ")
}
func (e *multiError) UnwrapMulti() []error {
@ -50,7 +50,7 @@ func Append(err error, other error, block func(error) error) error {
if other == nil {
return err
}
return Errors(err, block(err))
return Errors(err, block(other))
}
func IsMulti(err error, targetList ...error) bool {