| 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]; |
nothing calls this directly
no outgoing calls
no test coverage detected