| 302 | } |
| 303 | |
| 304 | std::string ReplaceAll(const std::string_view subject, const std::string_view search, const std::string_view replacement) |
| 305 | { |
| 306 | std::string ret(subject); |
| 307 | ReplaceAll(&ret, search, replacement); |
| 308 | return ret; |
| 309 | } |
| 310 | |
| 311 | void ReplaceAll(std::string* subject, const std::string_view search, const std::string_view replacement) |
| 312 | { |
no test coverage detected