| 126 | |
| 127 | iterator begin() { return iterator(&blocks_, blocks_.begin()); } |
| 128 | iterator end() { return iterator(&blocks_, blocks_.end()); } |
| 129 | const_iterator begin() const { return cbegin(); } |
| 130 | const_iterator end() const { return cend(); } |
| 131 | const_iterator cbegin() const { |
no test coverage detected