(i, j int)
| 73 | } |
| 74 | |
| 75 | func (f FlagsByName) Less(i, j int) bool { |
| 76 | return lexicographicLess(f[i].Names()[0], f[j].Names()[0]) |
| 77 | } |
| 78 | |
| 79 | func (f FlagsByName) Swap(i, j int) { |
| 80 | f[i], f[j] = f[j], f[i] |
nothing calls this directly
no test coverage detected