| 363 | } |
| 364 | |
| 365 | inline size_t capacity() const noexcept { |
| 366 | #ifdef TSTRING_IS_STD_STRING |
| 367 | return Storage_.capacity(); |
| 368 | #else |
| 369 | if (S_->IsNull()) { |
| 370 | return 0; |
| 371 | } |
| 372 | |
| 373 | return S_->capacity(); |
| 374 | #endif |
| 375 | } |
| 376 | |
| 377 | TCharType* Detach() Y_LIFETIME_BOUND { |
| 378 | #ifdef TSTRING_IS_STD_STRING |
no test coverage detected