| 142 | iterator begin() const { return ptr_; } |
| 143 | iterator end() const { return ptr_ + length_; } |
| 144 | const_reverse_iterator rbegin() const { |
| 145 | return const_reverse_iterator(ptr_ + length_); |
| 146 | } |
| 147 | const_reverse_iterator rend() const { |
| 148 | return const_reverse_iterator(ptr_); |
| 149 | } |
no outgoing calls