(i, j int)
| 25 | type sortRunes []rune |
| 26 | |
| 27 | func (s sortRunes) Less(i, j int) bool { |
| 28 | return s[i] < s[j] |
| 29 | } |
| 30 | |
| 31 | func (s sortRunes) Swap(i, j int) { |
| 32 | s[i], s[j] = s[j], s[i] |
nothing calls this directly
no outgoing calls
no test coverage detected