| 100 | [[nodiscard]] constexpr char *begin() noexcept { return m_data; } |
| 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 | } |
no outgoing calls
no test coverage detected