| 168 | typedef cbiterator<const circular_buffer, const T> const_iterator; |
| 169 | |
| 170 | iterator begin() { |
| 171 | return iterator(this, _impl.begin); |
| 172 | } |
| 173 | const_iterator begin() const { |
| 174 | return const_iterator(this, _impl.begin); |
| 175 | } |
nothing calls this directly
no test coverage detected