Structs and Pointers


Last time I mentioned that GO passes parameters by value, so modifying a struct within a function takes extra work. If my structs are large, there may be memory pressure as a result of creating copies in functions. That's where passing a pointer to a struct can help. That's what I tackle this time. Read More…

The Point of Pointers

Last time I learned about GO functions and parameters. Today, I want to learn about addresses and pointers in GO.

Read More…

This site does not track your information.