| 13906 | return m_start; |
| 13907 | } |
| 13908 | auto StringRef::data() const noexcept -> char const* { |
| 13909 | return m_start; |
| 13910 | } |
| 13911 | |
| 13912 | auto StringRef::substr( size_type start, size_type size ) const noexcept -> StringRef { |
| 13913 | if (start < m_size) { |
no outgoing calls
no test coverage detected