Check if there are any rows @output: - bool - True if there are any rows, else False
| 75 | // @output: |
| 76 | // - bool - True if there are any rows, else False |
| 77 | bool StringData::isEmpty() const |
| 78 | { |
| 79 | return d_ptr->m_values.isEmpty(); |
| 80 | } |
| 81 | |
| 82 | // Remove the row at index position 'row'. |
| 83 | // @input: |
no outgoing calls