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

Method removeRow

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

Remove the row at index position 'row'. @input: - row - index of row to remove. 'row' must be a valid index position (i.e., 0 <= row < rowCount()). Otherwise function will do nothing.

Source from the content-addressed store, hash-verified

68// - row - index of row to remove. 'row' must be a valid index position
69// (i.e., 0 <= row < rowCount()). Otherwise function will do nothing.
70void StringData::removeRow(const qsizetype row) {
71 if (row >= 0 && row < m_values.size()) {
72 m_values.removeAt(row);
73 }
74}
75
76// Replace the row at index position 'row' with new row.
77// @input:

Callers 3

testRemoveRowMethod · 0.45
testRemoveRowMethod · 0.45
onRemoveClickedMethod · 0.45

Calls 2

sizeMethod · 0.45
removeAtMethod · 0.45

Tested by 2

testRemoveRowMethod · 0.36
testRemoveRowMethod · 0.36