()
| 137 | type cmdSorter []*Cmd |
| 138 | |
| 139 | func (c cmdSorter) Len() int { return len(c) } |
| 140 | func (c cmdSorter) Less(i, j int) bool { return c[i].Name < c[j].Name } |
| 141 | func (c cmdSorter) Swap(i, j int) { c[i], c[j] = c[j], c[i] } |
no outgoing calls
no test coverage detected