package multierror

import (
	
	
)
ErrorFormatFunc is a function callback that is called by Error to turn the list of errors into a string.
ListFormatFunc is a basic formatter that outputs the number of errors that occurred along with a bullet point list of the errors.
func ( []error) string {
	if len() == 1 {
		return fmt.Sprintf("1 error occurred:\n\t* %s\n\n", [0])
	}

	 := make([]string, len())
	for ,  := range  {
		[] = fmt.Sprintf("* %s", )
	}

	return fmt.Sprintf(
		"%d errors occurred:\n\t%s\n\n",
		len(), strings.Join(, "\n\t"))