| 418 | } |
| 419 | |
| 420 | bool operator==(const std::string& stdString, const Valdi::StringBox& other) noexcept { |
| 421 | return other.toStringView() == stdString; |
| 422 | } |
| 423 | |
| 424 | StringBox StringBox::trimmed() const noexcept { |
| 425 | size_t start = 0; |
nothing calls this directly
no test coverage detected