#pointers-in-go
Read more stories on Hashnode
Articles with this tag
Pointer receivers Vs Value receivers //pointer receiver func (t *Type) Method() {} //value receiver func (t Type) Method() {} **When should you use...