| 35 | using const_reference = typename std::add_const<value_type>::type &; |
| 36 | |
| 37 | iterator begin() { |
| 38 | return reinterpret_cast<iterator>(_data.begin() + _offset); |
| 39 | } |
| 40 | |
| 41 | const_iterator cbegin() const { |
| 42 | return reinterpret_cast<const_iterator>(_data.begin() + _offset); |
no outgoing calls
no test coverage detected