Check if there are any rows @output: - bool - True if there are any rows, else False
| 60 | // @output: |
| 61 | // - bool - True if there are any rows, else False |
| 62 | bool StringData::isEmpty() const { |
| 63 | return m_values.isEmpty(); |
| 64 | } |
| 65 | |
| 66 | // Remove the row at index position 'row'. |
| 67 | // @input: |
no outgoing calls