errors
包添加了 3 个工具函数,分别是
Unwrap
、
Is
和
As
。 Unwrap() []error
Unwrap
避免了与现有 Unwrap 方法产生歧义,从
Unwrap
中返回一个长度为 0 的列表意味着错误没有包裹任何内容。调用方不得修改由
Unwrap
返回的列表,
Unwrap
返回的列表不得包含任何
nil
错误。
errors.Is
和
errors.As
函数进行了更新,实现对 multiple errors 进行
Unwrap
操作。
errors.Join
函数提供了 multierr 的简单实现:// Join returns an error that wraps the given errors.
// Any nil error values are discarded.
// The error formats as the text of the given errors, separated by newlines.
// Join returns nil if errs contains no non-nil values.
func Join(errs ...error) error
推荐阅读