You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
func ParseAddressList(list string) ([]*Address, error)
type Address
func ParseAddress(address string) (*Address, error)
func (a *Address) String() string
go/doc does not consider ParseAddressList an Address type func as it returns a slice, not the type directly. Since this rule is reserved for the first returned type, I suggest this is relaxed to also allow slices (and perhaps arrays too? but couldn't find an example of that).