return whether the iterator can be dereferenced
| 9200 | |
| 9201 | /// return whether the iterator can be dereferenced |
| 9202 | constexpr bool is_begin() const noexcept |
| 9203 | { |
| 9204 | return m_it == begin_value; |
| 9205 | } |
| 9206 | |
| 9207 | /// return whether the iterator is at end |
| 9208 | constexpr bool is_end() const noexcept |
no outgoing calls
no test coverage detected