| 241 | } |
| 242 | |
| 243 | StringBox StringBox::append(const StringBox& other) const noexcept { |
| 244 | if (isEmpty()) { |
| 245 | return other; |
| 246 | } |
| 247 | |
| 248 | return append(other.toStringView()); |
| 249 | } |
| 250 | |
| 251 | std::optional<uint32_t> StringBox::toUInt32() const noexcept { |
| 252 | auto sv = toStringView(); |
nothing calls this directly
no test coverage detected