Return an iterator to the end. The returned iterator only acts as a sentinel. Dereferencing it results in undefined behavior. @par Complexity Constant. @par Exception Safety No-throw guarantee. @{ */
| 850 | @{ |
| 851 | */ |
| 852 | iterator |
| 853 | end() noexcept |
| 854 | { |
| 855 | return impl_.end(); |
| 856 | } |
| 857 | |
| 858 | const_iterator |
| 859 | end() const noexcept |
no outgoing calls
no test coverage detected