Reserve space for 'size' rows. @input: - size - number of rows to reserve in memory. If 'size' is smaller than the current number of rows, function will do nothing.
| 97 | // - size - number of rows to reserve in memory. If 'size' is smaller than the |
| 98 | // current number of rows, function will do nothing. |
| 99 | void StringData::reserve(const qsizetype size) { |
| 100 | m_values.reserve(size); |
| 101 | } |
| 102 | |
| 103 | // Get number of rows |
| 104 | // @output: |
no outgoing calls
no test coverage detected