BasicDataTable defines the structure of basic data table
| 2 | |
| 3 | // BasicDataTable defines the structure of basic data table |
| 4 | type BasicDataTable interface { |
| 5 | // DataRowCount returns the total count of data row |
| 6 | DataRowCount() int |
| 7 | |
| 8 | // HeaderColumnNames returns the header column name list |
| 9 | HeaderColumnNames() []string |
| 10 | |
| 11 | // DataRowIterator returns the iterator of data row |
| 12 | DataRowIterator() BasicDataTableRowIterator |
| 13 | } |
| 14 | |
| 15 | // BasicDataTableRow defines the structure of basic data row |
| 16 | type BasicDataTableRow interface { |
no outgoing calls
no test coverage detected