package multierror
Len implements sort.Interface function for length
func ( Error) () int {
	return len(.Errors)
}
Swap implements sort.Interface function for swapping elements
func ( Error) (,  int) {
	.Errors[], .Errors[] = .Errors[], .Errors[]
}
Less implements sort.Interface function for determining order
func ( Error) (,  int) bool {
	return .Errors[].Error() < .Errors[].Error()