| 35 | } |
| 36 | |
| 37 | static flat_iterator end(const std::vector<C>& containers, const std::vector<value_type>& offsets) |
| 38 | { |
| 39 | if (containers.empty()) { |
| 40 | return flat_iterator(); |
| 41 | } |
| 42 | return flat_iterator(containers, offsets, containers.end() - 1, containers.back().end()); |
| 43 | } |
| 44 | |
| 45 | reference operator*() const |
| 46 | { |
no test coverage detected