| 266 | iterator begin() const { return ptr_; } |
| 267 | iterator end() const { return ptr_ + length_; } |
| 268 | const_reverse_iterator rbegin() const { |
| 269 | return const_reverse_iterator(ptr_ + length_); |
| 270 | } |
| 271 | const_reverse_iterator rend() const { |
| 272 | return const_reverse_iterator(ptr_); |
| 273 | } |
no outgoing calls