| 115 | } |
| 116 | |
| 117 | std::string_view SmallStringBase::view() const |
| 118 | { |
| 119 | return (m_length == 0) ? std::string_view() : std::string_view(m_buffer, m_length); |
| 120 | } |
| 121 | |
| 122 | SmallStringBase& SmallStringBase::operator=(SmallStringBase&& move) |
| 123 | { |
no outgoing calls
no test coverage detected