(headers []string, rows [][]string, maxLen map[int]int)
| 36 | } |
| 37 | |
| 38 | func getMaxLen(headers []string, rows [][]string, maxLen map[int]int) { |
| 39 | getRowMaxLen(headers, maxLen) |
| 40 | for _, row := range rows { |
| 41 | getRowMaxLen(row, maxLen) |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | func getRowMaxLen(row []string, maxLen map[int]int) { |
| 46 | for i, col := range row { |
no test coverage detected