(i, j int)
| 55 | } |
| 56 | |
| 57 | func (b *out_buffers) Less(i, j int) bool { |
| 58 | x := b.candidates[i] |
| 59 | y := b.candidates[j] |
| 60 | if x.Class == y.Class { |
| 61 | return x.Name < y.Name |
| 62 | } |
| 63 | return x.Class < y.Class |
| 64 | } |
| 65 | |
| 66 | func (b *out_buffers) Swap(i, j int) { |
| 67 | b.candidates[i], b.candidates[j] = b.candidates[j], b.candidates[i] |
nothing calls this directly
no outgoing calls
no test coverage detected