gl01/internal/util/sort.go

24 lines
324 B
Go
Raw Normal View History

2022-01-20 21:58:50 +08:00
package util
import "sort"
type SortFunc struct {
Lenf func() int
Lessf func(i, j int) bool
Swapf func(i, j int)
}
var _ sort.Interface = SortFunc{}
func (s SortFunc) Len() int {
return s.Lenf()
}
func (s SortFunc) Less(i, j int) bool {
return s.Lessf(i, j)
}
func (s SortFunc) Swap(i, j int) {
s.Swapf(i, j)
}