| 163 | } |
| 164 | |
| 165 | size_t StringBox::length() const noexcept { |
| 166 | return _internedString != nullptr ? _internedString->length() : 0; |
| 167 | } |
| 168 | |
| 169 | std::ostream& operator<<(std::ostream& os, const StringBox& d) noexcept { |
| 170 | return os << d.toStringView(); |
no outgoing calls