Create index-value pairs to sort
| 345 | |
| 346 | // Create index-value pairs to sort |
| 347 | type dateRow struct { |
| 348 | row []string |
| 349 | date int64 |
| 350 | } |
| 351 | |
| 352 | pairs := make([]dateRow, len(dataRows)) |
| 353 | for i := range dataRows { |
nothing calls this directly
no outgoing calls
no test coverage detected