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

Method hasElement

3rdparty/qcustomplot/qcustomplot.cpp:4221–4227  ·  view source on GitHub ↗

! Returns whether the cell at \a row and \a column exists and contains a valid element, i.e. isn't empty. \see element */

Source from the content-addressed store, hash-verified

4219 \see element
4220*/
4221bool QCPLayoutGrid::hasElement(int row, int column)
4222{
4223 if (row >= 0 && row < rowCount() && column >= 0 && column < columnCount())
4224 return mElements.at(row).at(column);
4225 else
4226 return false;
4227}
4228
4229/*!
4230 Sets the stretch \a factor of \a column.

Callers

nothing calls this directly

Calls 3

rowCountFunction · 0.85
columnCountFunction · 0.85
atMethod · 0.45

Tested by

no test coverage detected