| 666 | auto data() const noexcept -> char const*; |
| 667 | |
| 668 | constexpr auto isNullTerminated() const noexcept -> bool { |
| 669 | return m_start[m_size] == '\0'; |
| 670 | } |
| 671 | |
| 672 | public: // iterators |
| 673 | constexpr const_iterator begin() const { return m_start; } |
nothing calls this directly
no outgoing calls
no test coverage detected