March 25 Link to heading
Sorting Go Slices Link to heading
This article makes a strong case for using the “generic” implementation (provided by the slices
package) for sorting slices in Go.
I have used the sort.Interface
interface as well as the sort.Slice
function to sort slices. For precisely the same reasons listed in the post, I have never felt comfortable with either of them. The next time I need to sort a slice, I will make sure to give the slices.Sort
function a try.