Create index-value pairs to sort
| 306 | |
| 307 | // Create index-value pairs to sort |
| 308 | type numRow struct { |
| 309 | row []string |
| 310 | num float64 |
| 311 | } |
| 312 | |
| 313 | pairs := make([]numRow, len(dataRows)) |
| 314 | for i := range dataRows { |
nothing calls this directly
no outgoing calls
no test coverage detected