2021-12-01 15:43:13 +00:00

12 lines
164 B
Go

// +build go1.8
package main
import "sort"
func sortBySegment(s []string) {
sort.Slice(s, func(i, j int) bool {
return compareBySegment(s[i], s[j]) < 0
})
}