Returns the total number of bytes in the internal buffer. */
| 155 | } |
| 156 | /** Returns the total number of bytes in the internal buffer. */ |
| 157 | size_t capacity() const { |
| 158 | return capacity_; |
| 159 | } |
| 160 | |
| 161 | /** Extends the size of the internal buffer; reallocates if necessary. */ |
| 162 | void reserve(size_t capacity) { |
nothing calls this directly
no outgoing calls
no test coverage detected