| 381 | [[nodiscard]] constexpr const_reference front() const noexcept { return a.front(); } |
| 382 | |
| 383 | [[nodiscard]] constexpr reference back() noexcept { return a.back(); } |
| 384 | |
| 385 | [[nodiscard]] constexpr const_reference back() const noexcept { return a.back(); } |
| 386 |
no outgoing calls
no test coverage detected