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

Method emptyCellsString

src/csvdatastorage.cpp:512–518  ·  view source on GitHub ↗

Returns a string that consists of `num` internal delimiter characters */

Source from the content-addressed store, hash-verified

510 Returns a string that consists of `num` internal delimiter characters
511 */
512std::string CsvDataStorage::emptyCellsString(table_index_t num) {
513 std::string ret = "";
514 for( table_index_t c = 0; c < num; ++c) {
515 ret.push_back( static_cast<char>(TCRUNCHER_UTF_8_DELIMITER));
516 }
517 return ret;
518}
519
520
521

Callers

nothing calls this directly

Calls 1

push_backMethod · 0.80

Tested by

no test coverage detected