| 830 | } |
| 831 | |
| 832 | std::size_t String::count(const char character) const { |
| 833 | return StringView{*this}.count(character); |
| 834 | } |
| 835 | |
| 836 | char* String::release() { |
| 837 | DEATH_DEBUG_ASSERT(!(_small.size & Implementation::SmallStringBit), |
no outgoing calls
no test coverage detected