(table *Table, rowIndex int)
| 19 | } |
| 20 | |
| 21 | func getRow(table *Table, rowIndex int) map[string]ValueInterface { |
| 22 | row := make(map[string]ValueInterface) |
| 23 | for _, column := range table.Columns { |
| 24 | row[column.Name] = column.Values[rowIndex] |
| 25 | } |
| 26 | return row |
| 27 | } |
| 28 | |
| 29 | func getEmptyRow(table *Table) map[string]ValueInterface { |
| 30 | row := make(map[string]ValueInterface) |
no outgoing calls
no test coverage detected