return whether the iterator is at end
| 10667 | |
| 10668 | /// return whether the iterator is at end |
| 10669 | constexpr bool is_end() const noexcept |
| 10670 | { |
| 10671 | return m_it == end_value; |
| 10672 | } |
| 10673 | |
| 10674 | friend constexpr bool operator==(primitive_iterator_t lhs, primitive_iterator_t rhs) noexcept |
| 10675 | { |
no outgoing calls
no test coverage detected