return whether the iterator can be dereferenced
| 10661 | |
| 10662 | /// return whether the iterator can be dereferenced |
| 10663 | constexpr bool is_begin() const noexcept |
| 10664 | { |
| 10665 | return m_it == begin_value; |
| 10666 | } |
| 10667 | |
| 10668 | /// return whether the iterator is at end |
| 10669 | constexpr bool is_end() const noexcept |
no outgoing calls
no test coverage detected