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