()
| 25 | // col within [0,numRows) and [0, numCols), it should return valid value and should not panic. |
| 26 | type TableDataSource interface { |
| 27 | NumRows() int |
| 28 | GetValue(row, col int) interface{} |
| 29 | ColumnHeaders() []string |
| 30 | } |
no outgoing calls
no test coverage detected