| 188 | } |
| 189 | |
| 190 | void replaceInplace( std::string& target, std::string_view from, std::string_view to ) |
| 191 | { |
| 192 | target = replace( std::move( target ), from, to ); |
| 193 | } |
| 194 | |
| 195 | std::string_view trim( std::string_view str ) |
| 196 | { |
no test coverage detected