| 11236 | (std::strncmp( m_start, other.m_start, size() ) == 0); |
| 11237 | } |
| 11238 | auto StringRef::operator != ( StringRef const& other ) const noexcept -> bool { |
| 11239 | return !operator==( other ); |
| 11240 | } |
| 11241 | |
| 11242 | auto StringRef::operator[](size_type index) const noexcept -> char { |
| 11243 | return m_start[index]; |
nothing calls this directly
no outgoing calls
no test coverage detected