(i, j int)
| 33 | } |
| 34 | |
| 35 | func (s *Sort) Swap(i, j int) { |
| 36 | s.Array[i], s.Array[j] = s.Array[j], s.Array[i] |
| 37 | } |
| 38 | |
| 39 | func (s *Sort) Less(i, j int) bool { |
| 40 | a, b := s.Array[i], s.Array[j] |
nothing calls this directly
no outgoing calls
no test coverage detected