* Iterators */
| 1011 | * Iterators |
| 1012 | */ |
| 1013 | iterator begin() noexcept { |
| 1014 | auto begin = m_buckets_data.begin(); |
| 1015 | while (begin != m_buckets_data.end() && begin->empty()) { |
| 1016 | ++begin; |
| 1017 | } |
| 1018 | |
| 1019 | return (begin != m_buckets_data.end()) |
| 1020 | ? iterator(begin, begin->cbegin(), this) |
| 1021 | : end(); |
| 1022 | } |
| 1023 | |
| 1024 | const_iterator begin() const noexcept { return cbegin(); } |
| 1025 |
no test coverage detected