* @param size Number of additional characters to * reserve in output string. */
| 87 | * reserve in output string. |
| 88 | */ |
| 89 | inline void Reserve(size_t size) { |
| 90 | S_->reserve(S_->size() + size); |
| 91 | } |
| 92 | |
| 93 | inline void Swap(TStringOutput& s) noexcept { |
| 94 | DoSwap(S_, s.S_); |
no test coverage detected