
Pointer Fundamentals
Learn what pointers are in Go, how to declare and use them, the & and * operators, and how to work with pointers to structs
Pointers and Memory Allocation
How Go allocates memory for pointer values using the new built-in, why pointers to local variables are safe, and how to choose between pointer and value receivers.
Pointers in Practice
A guide to using pointers in Go effectively - passing pointers to functions, trade-offs between pointers and values, and pointer comparison.