GO TECHNIQUE

Pointers in Go: To Use or Not To Use? My Personal Guide

With pointers, you’ll be able to pass references to values instead of copying them, !(saving memory and improving performance)

Phuong Le (@func25)
Published in
7 min readMar 14, 2023

--

Photo by Ben Robbins on Unsplash

In using pointers, you can alter values by reference, avoiding the need to copy them, this not only simplifies…

--

--