Source File
join.go
Belonging Package
errors
// Copyright 2022 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package errors
// Join returns an error that wraps the given errors.
// Any nil error values are discarded.
// Join returns nil if every value in errs is nil.
// The error formats as the concatenation of the strings obtained
// by calling the Error method of each element of errs, with a newline
// between each string.
//
// A non-nil error returned by Join implements the Unwrap() []error method.
func ( ...error) error {
:= 0
for , := range {
if != nil {
++
}
}
if == 0 {
return nil
}
:= &joinError{
errs: make([]error, 0, ),
}
for , := range {
if != nil {
.errs = append(.errs, )
}
}
return
}
type joinError struct {
errs []error
}
func ( *joinError) () string {
var []byte
for , := range .errs {
if > 0 {
= append(, '\n')
}
= append(, .Error()...)
}
return string()
}
func ( *joinError) () []error {
return .errs
}
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |