Golang: Clear Slice

By Xah Lee. Date: .

Clear Slice

To clear slice, set it to nil or set it to a slice of 0 length.

mySlice = nil

or

mySlice = mySlice[0:0]

The recommended way is to set to nil.

Golang, array and slice