(i, j int)
| 59 | |
| 60 | func (p sortableSlice) Len() int { return len(p) } |
| 61 | func (p sortableSlice) Less(i, j int) bool { return p[i] < p[j] } |
| 62 | func (p sortableSlice) Swap(i, j int) { p[i], p[j] = p[j], p[i] } |
nothing calls this directly
no outgoing calls
no test coverage detected