Sign in
go
/
tools
/
515711824d76668446153a24ead0753c9879ed26
/
.
/
go
/
ssa
/
testdata
/
src
/
sort
/
sort.go
blob: d0b0e9942d1e738df746b418dd3379175dbf9d46 [
file
] [
log
] [
blame
]
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)
}