| 171 | : m_data(other.data()), m_size(other.size()){} |
| 172 | |
| 173 | constexpr C* data() const noexcept { return m_data; } |
| 174 | constexpr C* begin() const noexcept { return m_data; } |
| 175 | constexpr C* end() const noexcept { return m_data + m_size; } |
| 176 | CONSTEXPR_IF_NOT_DEBUG C& front() const noexcept |
no outgoing calls
no test coverage detected