| 269 | return const_reverse_iterator(ptr_ + length_); |
| 270 | } |
| 271 | const_reverse_iterator rend() const { |
| 272 | return const_reverse_iterator(ptr_); |
| 273 | } |
| 274 | // STLS says return size_type, but Google says return int |
| 275 | int max_size() const { return length_; } |
| 276 | int capacity() const { return length_; } |
no outgoing calls
no test coverage detected