| 274 | // STLS says return size_type, but Google says return int |
| 275 | int max_size() const { return length_; } |
| 276 | int capacity() const { return length_; } |
| 277 | |
| 278 | // cpplint.py emits a false positive [build/include_what_you_use] |
| 279 | int copy(char* buf, size_type n, size_type pos = 0) const; // NOLINT |
no outgoing calls
no test coverage detected