| 23 | InternedStringImpl::~InternedStringImpl() = default; |
| 24 | |
| 25 | size_t InternedStringImpl::getHash() const noexcept { |
| 26 | return _hash; |
| 27 | } |
| 28 | |
| 29 | std::string_view InternedStringImpl::toStringView() const noexcept { |
| 30 | return std::string_view(getCStr(), _length); |
no outgoing calls
no test coverage detected