| 11240 | } |
| 11241 | |
| 11242 | auto StringRef::operator[](size_type index) const noexcept -> char { |
| 11243 | return m_start[index]; |
| 11244 | } |
| 11245 | |
| 11246 | auto StringRef::numberOfCharacters() const noexcept -> size_type { |
| 11247 | size_type noChars = m_size; |
nothing calls this directly
no outgoing calls
no test coverage detected