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

Method rowValues

3rdparty/qtcsv-qt5/sources/stringdata.cpp:135–143  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

133// - QStringList - values of row. If row is invalid number, function will
134// return empty QStringList.
135QStringList StringData::rowValues(const int& row) const
136{
137 if (row < 0 || rowCount() <= row)
138 {
139 return QStringList();
140 }
141
142 return d_ptr->m_values.at(row);
143}
144
145bool StringData::operator==(const StringData& other) const
146{

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 3

rowCountFunction · 0.85
QStringListClass · 0.70
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