| 374 | } |
| 375 | |
| 376 | std::size_t String::size() const { |
| 377 | if (_small.size & Implementation::SmallStringBit) |
| 378 | return _small.size & ~SmallSizeMask; |
| 379 | return _large.size & ~LargeSizeMask; |
| 380 | } |
| 381 | |
| 382 | char* String::begin() { |
| 383 | if (_small.size & Implementation::SmallStringBit) |
no outgoing calls
no test coverage detected