| 122 | } |
| 123 | |
| 124 | bool contains(const std::string& string, const std::string& search) |
| 125 | { |
| 126 | return (string.find(search) != std::string::npos); |
| 127 | } |
| 128 | |
| 129 | bool startsWith(const std::string& string, const std::string& search) |
| 130 | { |
no test coverage detected