| 67 | class BaseIterator : std::iterator<std::forward_iterator_tag, Elem> { |
| 68 | public: |
| 69 | BaseIterator(const BaseIterator&) = default; |
| 70 | BaseIterator(BaseIterator&&) = default; |
| 71 | BaseIterator(HashSetType* hash_set, size_t index) : index_(index), hash_set_(hash_set) { |
| 72 | } |
nothing calls this directly
no outgoing calls
no test coverage detected