bottin/vendor/github.com/hashicorp/go-immutable-radix/edges.go
Simon Beck 22a8897e72 Vendor
2022-02-08 20:24:59 +01:00

22 lines
267 B
Go

package iradix
import "sort"
type edges []edge
func (e edges) Len() int {
return len(e)
}
func (e edges) Less(i, j int) bool {
return e[i].label < e[j].label
}
func (e edges) Swap(i, j int) {
e[i], e[j] = e[j], e[i]
}
func (e edges) Sort() {
sort.Sort(e)
}