Len returns the number of values in the slice. It is part of the sort.Interface implementation.
()
| 277 | // Len returns the number of values in the slice. It is part of the |
| 278 | // sort.Interface implementation. |
| 279 | func (s *valuesSorter) Len() int { |
| 280 | return len(s.values) |
| 281 | } |
| 282 | |
| 283 | // Swap swaps the values at the passed indices. It is part of the |
| 284 | // sort.Interface implementation. |
no outgoing calls
no test coverage detected