bouncer/internal/store/sort.go

14 lines
510 B
Go
Raw Permalink Normal View History

2023-04-24 20:52:12 +02:00
package store
type ByProxyWeight []*ProxyHeader
func (s ByProxyWeight) Len() int { return len(s) }
func (s ByProxyWeight) Swap(i, j int) { s[i], s[j] = s[j], s[i] }
func (s ByProxyWeight) Less(i, j int) bool { return s[i].Weight > s[j].Weight }
type ByLayerWeight []*LayerHeader
func (s ByLayerWeight) Len() int { return len(s) }
func (s ByLayerWeight) Swap(i, j int) { s[i], s[j] = s[j], s[i] }
func (s ByLayerWeight) Less(i, j int) bool { return s[i].Weight > s[j].Weight }