MCPcopy Create free account
hub / github.com/Tablecruncher/tablecruncher / getRow

Method getRow

src/csvdatastorage.cpp:200–204  ·  view source on GitHub ↗

getRow(long R) Returns the row string (including illegal UTF-8 glue character) */

Source from the content-addressed store, hash-verified

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

Callers 2

findSubstringMethod · 0.80
findInCellMethod · 0.80

Calls 1

atMethod · 0.80

Tested by

no test coverage detected