(i, j int)
| 33 | |
| 34 | func (xs Items) Len() int { return len(xs) } |
| 35 | func (xs Items) Swap(i, j int) { xs[i], xs[j] = xs[j], xs[i] } |
| 36 | func (xs Items) Less(i, j int) bool { return xs[i].Name < xs[j].Name } |
| 37 | |
| 38 | func main() { |
nothing calls this directly
no outgoing calls
no test coverage detected