| 643 | auto data() const noexcept -> char const*; |
| 644 | |
| 645 | constexpr auto isNullTerminated() const noexcept -> bool { |
| 646 | return m_start[m_size] == '\0'; |
| 647 | } |
| 648 | |
| 649 | public: // iterators |
| 650 | constexpr const_iterator begin() const { return m_start; } |
nothing calls this directly
no outgoing calls
no test coverage detected