Element access:
| 95 | |
| 96 | // Element access: |
| 97 | V back() const { CHECK(!empty()); return data_[size_-1]; } |
| 98 | V front() const { CHECK(!empty()); return data_[0]; } |
| 99 | V& operator[] (int i) { return data_[i]; } |
| 100 | const V& operator[] (int i) const { return data_[i]; } |
no outgoing calls
no test coverage detected