| 17 | using iterator_category = std::forward_iterator_tag; |
| 18 | |
| 19 | explicit BitIterator() : m_value(0) {} |
| 20 | explicit BitIterator(const DataT x) : m_value(std::move(x)) {} |
| 21 | |
| 22 | reference operator*() const |
nothing calls this directly
no outgoing calls
no test coverage detected