| 368 | } |
| 369 | |
| 370 | auto String::deleter() const -> Deleter { |
| 371 | DEATH_DEBUG_ASSERT(!(_small.size & Implementation::SmallStringBit), |
| 372 | "Cannot call on a SSO instance", {}); |
| 373 | return _large.deleter; |
| 374 | } |
| 375 | |
| 376 | std::size_t String::size() const { |
| 377 | if (_small.size & Implementation::SmallStringBit) |
no outgoing calls
no test coverage detected