// 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
}