| 34 | const char* data() const { return m_data; } |
| 35 | qsizetype size() const { return m_size; } |
| 36 | bool isEmpty() const { return m_size == 0; } |
| 37 | bool operator==(const QByteArrayView& other) const |
| 38 | { |
| 39 | return m_size == other.m_size && (m_data == other.m_data || (m_size > 0 && std::memcmp(m_data, other.m_data, m_size) == 0)); |
no outgoing calls