(i, j int)
| 190 | |
| 191 | func (p pairlist) Len() int { return len(p) } |
| 192 | func (p pairlist) Less(i, j int) bool { return p[i].Value < p[j].Value } |
| 193 | func (p pairlist) Swap(i, j int) { p[i], p[j] = p[j], p[i] } |
nothing calls this directly
no outgoing calls
no test coverage detected