| 40 | |
| 41 | template <class F> |
| 42 | auto with_char(F f) |
| 43 | { |
| 44 | return [=](unsigned char c) -> bool { return f(c); }; |
| 45 | } |
| 46 | |
| 47 | inline void |
| 48 | replace_string_inplace(std::string& subject, const std::string& search, const std::string& replace) |
no outgoing calls
no test coverage detected