| 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 |
| 177 | { |
| 178 | ASSERT_IF_DEBUG(size() > 0); |
no outgoing calls