GolangのSort処理 GolangのSort処理について、まとめました。 (// package sort と記載があるサンプルコードは、Golang本体のソースコードです) Sort Sort Interface Golangでは、structのソートを行うため、sort.Interfaceを実装する必要があります。 (実際はGo1.8以降、下記の sort.Slice() を利用して、ソートすることができるようになりました。参考) // sort.Interface type Interface interface { // Len is the number of elements in the collection. Len() int // Less reports whether the element with // index i should sort before