(i, j int)
| 351 | } |
| 352 | |
| 353 | func (s TreeEntrySorter) Less(i, j int) bool { |
| 354 | return treeEntrySortName(&s[i]) < treeEntrySortName(&s[j]) |
| 355 | } |
| 356 | |
| 357 | func (s TreeEntrySorter) Swap(i, j int) { |
| 358 | s[i], s[j] = s[j], s[i] |
nothing calls this directly
no test coverage detected