set(std::string content, long R, long C) Set content of a single cell */
| 211 | Set content of a single cell |
| 212 | */ |
| 213 | bool CsvDataStorage::set(std::string content, table_index_t R, table_index_t C) { |
| 214 | if( C < 0 || R < 0 || R >= rows() || C >= columns() ) |
| 215 | return false; |
| 216 | tableData.at(R) = setColumn(tableData.at(R), C, content); |
| 217 | return true; |
| 218 | } |
| 219 | |
| 220 | |
| 221 |
no test coverage detected