| 80 | } |
| 81 | |
| 82 | bool isStringNumeric(const std::string& str) |
| 83 | { |
| 84 | return (isStringFloat(str) || isStringInt(str)); |
| 85 | } |
| 86 | |
| 87 | void replaceInPlace( |
| 88 | std::string& subject, const std::string& search, const std::string& replace) |
nothing calls this directly
no test coverage detected