| 395 | [[nodiscard]] constexpr const_iterator cbegin() const noexcept { return a.cbegin(); } |
| 396 | |
| 397 | [[nodiscard]] constexpr iterator end() noexcept { return a.end(); } |
| 398 | |
| 399 | [[nodiscard]] constexpr const_iterator end() const noexcept { return a.end(); } |
| 400 |