| 838 | |
| 839 | public: |
| 840 | iterator() noexcept : buckets(nullptr), list_it(), bucket_num(-1) { } |
| 841 | iterator(bucket_vec *buckets_p, list_iterator_t lit, size_t bucket_p) noexcept |
| 842 | : buckets(buckets_p), list_it(lit), bucket_num(bucket_p) { } |
| 843 | iterator(const iterator &) noexcept = default; |
nothing calls this directly
no outgoing calls
no test coverage detected