I wonder if using a slice here is more efficient than using an array here.
Maybe its valuable to note that
out := ""
is the same as
var out string
which doesn't need to be initialized as the Zero Value of a String is by default ""
Loading collection data...
I wonder if using a slice here is more efficient than using an array here.
Maybe its valuable to note that
out := ""
is the same as
var out string
which doesn't need to be initialized as the Zero Value of a String is by default ""