| 223 | } |
| 224 | |
| 225 | StringBox StringBox::prepend(const StringBox& other) const noexcept { |
| 226 | return prepend(other.toStringView()); |
| 227 | } |
| 228 | |
| 229 | StringBox StringBox::prepend(const std::string_view& other) const noexcept { |
| 230 | if (other.empty()) { |
nothing calls this directly
no test coverage detected