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

Method operator !=

unittests/catch.hpp:9702–9704  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9700 (std::strncmp( m_start, other.m_start, size() ) == 0);
9701 }
9702 auto StringRef::operator != ( StringRef const& other ) const noexcept -> bool {
9703 return !operator==( other );
9704 }
9705
9706 auto StringRef::operator[](size_type index) const noexcept -> char {
9707 return m_start[index];

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected