| 101 | [[nodiscard]] constexpr char *end() noexcept { return m_data + m_size; } |
| 102 | [[nodiscard]] constexpr const char *cbegin() const noexcept { return m_data; } |
| 103 | [[nodiscard]] constexpr const char *cend() const noexcept { |
| 104 | return m_data + m_size; |
| 105 | } |
| 106 | |
| 107 | constexpr char &operator[](std::size_t pos) noexcept { return m_data[pos]; } |
| 108 |
no outgoing calls
no test coverage detected