| 51 | typedef iterator_base<const segmented_vector_type*> const_iterator; |
| 52 | |
| 53 | iterator_base(Seg vector, size_type size) // NOLINT |
| 54 | : vector_(vector), |
| 55 | index_(size % SegmentSize), |
| 56 | segment_index_(size / SegmentSize) { } |
| 57 | |
| 58 | iterator_base(const iterator& it) // NOLINT |
| 59 | : vector_(it.vector()), |
nothing calls this directly
no test coverage detected