Return the allocated capacity of this string.
| 190 | |
| 191 | // Return the allocated capacity of this string. |
| 192 | size_t capacity() const { |
| 193 | return capacity_; |
| 194 | } |
| 195 | |
| 196 | // Return a pointer to the data in this string. Note that this pointer |
| 197 | // may be invalidated by any later non-const operation. |
no outgoing calls