| 159 | } |
| 160 | |
| 161 | bool StringBox::isEmpty() const noexcept { |
| 162 | return _internedString == nullptr || _internedString->length() == 0; |
| 163 | } |
| 164 | |
| 165 | size_t StringBox::length() const noexcept { |
| 166 | return _internedString != nullptr ? _internedString->length() : 0; |