type sort.StringSlice
6 uses
sort (current package)
search.go#L150: func (p StringSlice) Search(x string) int { return SearchStrings(p, x) }
sort.go#L154: type StringSlice []string
sort.go#L156: func (x StringSlice) Len() int { return len(x) }
sort.go#L157: func (x StringSlice) Less(i, j int) bool { return x[i] < x[j] }
sort.go#L158: func (x StringSlice) Swap(i, j int) { x[i], x[j] = x[j], x[i] }
sort.go#L161: func (x StringSlice) Sort() { Sort(x) }
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)