get(long R, long C) Get content of a single cell. You can't be sure that C is lower than columns() as CsvParser::parseCsvStream() may be called with resizeRows == false for probing */
| 185 | called with resizeRows == false for probing |
| 186 | */ |
| 187 | std::string CsvDataStorage::get(table_index_t R, table_index_t C) { |
| 188 | if( C < 0 || R < 0 || R >= rows() || C >= columns() ) |
| 189 | return ""; |
| 190 | return getColumn(tableData.at(R), C); |
| 191 | } |
| 192 | |
| 193 | |
| 194 |
no test coverage detected