In Go, is there a notable difference between the following two segments of code:
v := &Vector{}
as opposed to
v := new(Vector)
2.1m questions
2.1m answers
60 comments
57.0k users