(i, j int)
| 177 | } |
| 178 | |
| 179 | func (l LabelValues) Less(i, j int) bool { |
| 180 | return string(l[i]) < string(l[j]) |
| 181 | } |
| 182 | |
| 183 | func (l LabelValues) Swap(i, j int) { |
| 184 | l[i], l[j] = l[j], l[i] |
nothing calls this directly
no outgoing calls
no test coverage detected