aboutsummaryrefslogtreecommitdiff
path: root/go/ssa/testdata/src/sort/sort.go
blob: d0b0e9942d1e738df746b418dd3379175dbf9d46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package sort

func Strings(x []string)
func Ints(x []int)
func Float64s(x []float64)

func Sort(data Interface)

type Interface interface {
	Len() int
	Less(i, j int) bool
	Swap(i, j int)
}