Return an iterator to the beginning. If the container is empty, @ref end() is returned. @par Complexity Constant. @par Exception Safety No-throw guarantee. @{ */
| 808 | @{ |
| 809 | */ |
| 810 | iterator |
| 811 | begin() noexcept |
| 812 | { |
| 813 | return impl_.data(); |
| 814 | } |
| 815 | |
| 816 | const_iterator |
| 817 | begin() const noexcept |
no test coverage detected