MCPcopy Index your code
hub / github.com/Audio4Linux/JDSP4Linux / rowValues

Method rowValues

3rdparty/qtcsv/sources/stringdata.cpp:116–120  ·  view source on GitHub ↗

Get values (as list of strings) of specified row @input: - row - valid number of row @output: - QList - values of row. If row is invalid number, function will return empty list.

Source from the content-addressed store, hash-verified

114// - QList<QString> - values of row. If row is invalid number, function will
115// return empty list.
116QList<QString> StringData::rowValues(const qsizetype row) const {
117 if (row < 0 || rowCount() <= row) { return {}; }
118
119 return m_values.at(row);
120}
121
122// Add new row that would contain one value
123StringData& StringData::operator<<(const QString& value) {

Callers 15

getNextMethod · 0.45
testAddEmptyRowMethod · 0.45
testAddOneRowMethod · 0.45
testAddRowsMethod · 0.45
testInsertRowsMethod · 0.45
testCopyConstructionMethod · 0.45
testCopyAssignmentMethod · 0.45
testOperatorInputMethod · 0.45
testRemoveRowMethod · 0.45
testReplaceRowMethod · 0.45
testAddEmptyRowMethod · 0.45

Calls 2

rowCountFunction · 0.85
atMethod · 0.45

Tested by 15

testAddEmptyRowMethod · 0.36
testAddOneRowMethod · 0.36
testAddRowsMethod · 0.36
testInsertRowsMethod · 0.36
testCopyConstructionMethod · 0.36
testCopyAssignmentMethod · 0.36
testOperatorInputMethod · 0.36
testRemoveRowMethod · 0.36
testReplaceRowMethod · 0.36
testAddEmptyRowMethod · 0.36
testAddOneRowMethod · 0.36