type sort.IntSlice
6 uses
sort (current package)
search.go#L144: func (p IntSlice) Search(x int) int { return SearchInts(p, x) }
sort.go#L121: type IntSlice []int
sort.go#L123: func (x IntSlice) Len() int { return len(x) }
sort.go#L124: func (x IntSlice) Less(i, j int) bool { return x[i] < x[j] }
sort.go#L125: func (x IntSlice) Swap(i, j int) { x[i], x[j] = x[j], x[i] }
sort.go#L128: func (x IntSlice) Sort() { Sort(x) }
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)