getRow(long R) Returns the row string (including illegal UTF-8 glue character) */
| 198 | Returns the row string (including illegal UTF-8 glue character) |
| 199 | */ |
| 200 | std::string CsvDataStorage::getRow(table_index_t R) { |
| 201 | if( R < 0 || R >= rows() ) |
| 202 | return ""; |
| 203 | return tableData.at(R); |
| 204 | } |
| 205 | |
| 206 | |
| 207 |
no test coverage detected