return whether the iterator can be dereferenced
| 10733 | |
| 10734 | /// return whether the iterator can be dereferenced |
| 10735 | constexpr bool is_begin() const noexcept |
| 10736 | { |
| 10737 | return m_it == begin_value; |
| 10738 | } |
| 10739 | |
| 10740 | /// return whether the iterator is at end |
| 10741 | constexpr bool is_end() const noexcept |
no outgoing calls
no test coverage detected