addresses
Structs and Pointers
07/12/21 08:35 Filed in: GO
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
02/22/21 08:07 Filed in: GO
Last time I learned about GO functions and parameters. Today, I want to learn about addresses and pointers in GO.
Read More…
Read More…