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

Method set

src/csvdatastorage.cpp:213–218  ·  view source on GitHub ↗

set(std::string content, long R, long C) Set content of a single cell */

Source from the content-addressed store, hash-verified

211 Set content of a single cell
212 */
213bool 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

Callers 15

setCellMethod · 0.80
undoMethod · 0.80
mainFunction · 0.80
updateCheckButtonCBMethod · 0.80
showOnboardingProcessMethod · 0.80
quitApplicationMethod · 0.80
executeMacroMethod · 0.80
addNewMacroCBMethod · 0.80
executeMacroListCBMethod · 0.80
setWorkDirMethod · 0.80
switchHeaderRowCBMethod · 0.80

Calls 1

atMethod · 0.80

Tested by

no test coverage detected