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

Method isEmptyLineVector

src/csvtable.cpp:1197–1204  ·  view source on GitHub ↗

überprüft, ob ein > leer ist

Source from the content-addressed store, hash-verified

1195// überprüft, ob ein <std::vector<std::string>> leer ist
1196//
1197bool CsvTable::isEmptyLineVector(std::vector<std::string> *line) {
1198 for( std::vector<std::string>::size_type i = 0; i < line->size(); ++i ) {
1199 if( line->at(i).size() ) {
1200 return false;
1201 }
1202 }
1203 return true;
1204}
1205
1206
1207

Callers

nothing calls this directly

Calls 2

atMethod · 0.80
sizeMethod · 0.45

Tested by

no test coverage detected