| 278 | void clear() FMT_NOEXCEPT(true) { size_ = 0; } |
| 279 | |
| 280 | void push_back(const T &value) { |
| 281 | if (size_ == capacity_) |
| 282 | grow(size_ + 1); |
| 283 | ptr_[size_++] = value; |
| 284 | } |
| 285 | |
| 286 | // Appends data to the end of the buffer. |
| 287 | void append(const T *begin, const T *end); |
no outgoing calls
no test coverage detected