| 13832 | return s.find( infix ) != std::string::npos; |
| 13833 | } |
| 13834 | void toLowerInPlace( std::string& s ) { |
| 13835 | std::transform( s.begin(), s.end(), s.begin(), toLowerCh ); |
| 13836 | } |
| 13837 | std::string toLower( std::string const& s ) { |
| 13838 | std::string lc = s; |
| 13839 | toLowerInPlace( lc ); |