MCPcopy Create free account
hub / github.com/dail8859/NotepadNext / operator!=

Method operator!=

src/ByteArrayUtils.h:41–41  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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));
40 }
41 bool operator!=(const QByteArrayView& other) const { return !(*this == other); }
42
43private:
44 const char* m_data;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected