(i, j int)
| 18 | } |
| 19 | |
| 20 | func (c *commandCategories) Less(i, j int) bool { |
| 21 | return lexicographicLess((*c)[i].Name(), (*c)[j].Name()) |
| 22 | } |
| 23 | |
| 24 | func (c *commandCategories) Len() int { |
| 25 | return len(*c) |
nothing calls this directly
no test coverage detected