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

Method setCell

src/csvtable.cpp:113–119  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

111
112
113void CsvTable::setCell(std::string content, table_index_t row, table_index_t col) {
114 if( row >= 0 and row < getNumberRows() and col >= 0 and col <= getNumberCols() ) {
115 storage.set(content, row, col);
116 } else {
117 // TODO Handle error
118 }
119}
120
121
122

Callers 6

apiSetCellMethod · 0.80
setValueHideMethod · 0.80
deleteSelectionMethod · 0.80
undoMethod · 0.80
pasteMethod · 0.80
editSingleCellMethod · 0.80

Calls 1

setMethod · 0.80

Tested by

no test coverage detected