()
| 39 | } |
| 40 | |
| 41 | func (c *CategoryFlagSet) SortedCategoryNames() []string { |
| 42 | var names []string |
| 43 | for name := range c.Categories { |
| 44 | names = append(names, name) |
| 45 | } |
| 46 | sort.Strings(names) |
| 47 | return names |
| 48 | } |
no outgoing calls
no test coverage detected