| 11508 | } |
| 11509 | |
| 11510 | auto StringRef::operator[](size_type index) const noexcept -> char { |
| 11511 | return m_start[index]; |
| 11512 | } |
| 11513 | |
| 11514 | auto StringRef::numberOfCharacters() const noexcept -> size_type { |
| 11515 | size_type noChars = m_size; |
no outgoing calls
no test coverage detected