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