| 215 | } |
| 216 | |
| 217 | std::string RemoveFirst(const StringPiece& s, const StringPiece& substr, bool fill_blank) |
| 218 | { |
| 219 | return fill_blank ? ReplaceFirst(s, substr, " ") : ReplaceFirst(s, substr, ""); |
| 220 | } |
| 221 | |
| 222 | std::string RemoveAll(const StringPiece& s, const StringPiece& substr, bool fill_blank) |
| 223 | { |
nothing calls this directly
no test coverage detected