Method Receivers
This lesson explains with examples method receivers in Go
We'll cover the following...
Methods can be associated with a named type (User
for instance) or a pointer to a named type (*User
).
In the two type aliasing examples in previous lesson, methods were ...