return whether the iterator can be dereferenced
| 12678 | |
| 12679 | /// return whether the iterator can be dereferenced |
| 12680 | constexpr bool is_begin() const noexcept |
| 12681 | { |
| 12682 | return m_it == begin_value; |
| 12683 | } |
| 12684 | |
| 12685 | /// return whether the iterator is at end |
| 12686 | constexpr bool is_end() const noexcept |
no outgoing calls
no test coverage detected