| 13188 | return s.find( infix ) != std::string::npos; |
| 13189 | } |
| 13190 | void toLowerInPlace( std::string& s ) { |
| 13191 | std::transform( s.begin(), s.end(), s.begin(), toLowerCh ); |
| 13192 | } |
| 13193 | std::string toLower( std::string const& s ) { |
| 13194 | std::string lc = s; |
| 13195 | toLowerInPlace( lc ); |