push_front(std::vector > row) Adds row to the beginning of the table data */
| 280 | Adds row to the beginning of the table data |
| 281 | */ |
| 282 | void CsvDataStorage::push_front(std::string row) { |
| 283 | // TODO edit length histogram!? |
| 284 | tableData.insert(tableData.begin(), row); |
| 285 | } |
| 286 | void CsvDataStorage::push_front(std::vector<std::string> row) { |
| 287 | // TODO edit length histogram!? |
| 288 | tableData.insert(tableData.begin(), mergeString(row)); |
no test coverage detected