| 13917 | return m_start; |
| 13918 | } |
| 13919 | auto StringRef::data() const noexcept -> char const* { |
| 13920 | return m_start; |
| 13921 | } |
| 13922 | |
| 13923 | auto StringRef::substr( size_type start, size_type size ) const noexcept -> StringRef { |
| 13924 | if (start < m_size) { |
no outgoing calls