> And passing pointers to strings rather than strings, hmmm.
Are you referring to the "URL" example? That isn't a case of passing pointers to strings, that is passing a URL (fmt.Stringer) where the String method has a pointer receiver.
To demonstrate why the pointer would be needed in that case, consider:
> And passing pointers to strings rather than strings, hmmm.
Are you referring to the "URL" example? That isn't a case of passing pointers to strings, that is passing a URL (fmt.Stringer) where the String method has a pointer receiver.
To demonstrate why the pointer would be needed in that case, consider: