MCPcopy Create free account
hub / github.com/apache/trafficserver / toLowerInPlace

Function toLowerInPlace

lib/catch2/catch.hpp:13832–13834  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 1

toLowerFunction · 0.85

Calls 2

beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected