| 401 | constexpr const_reverse_iterator rend() const noexcept { return std::make_reverse_iterator(begin()); } |
| 402 | |
| 403 | constexpr const_iterator cbegin() const noexcept { return const_iterator{data()}; } |
| 404 | |
| 405 | constexpr const_iterator cend() const noexcept { return const_iterator{data()} + size(); } |
| 406 |
no test coverage detected