(i, j int)
| 174 | |
| 175 | func (ts sortableUint32) Len() int { return len(ts) } |
| 176 | func (ts sortableUint32) Swap(i, j int) { ts[i], ts[j] = ts[j], ts[i] } |
| 177 | func (ts sortableUint32) Less(i, j int) bool { return ts[i] < ts[j] } |
| 178 | |
| 179 | const key = "test" |
no outgoing calls
no test coverage detected