MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / toLowerInPlace

Function toLowerInPlace

extlibs/catch/include/catch/catch.hpp:13190–13192  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 );

Callers 1

toLowerFunction · 0.85

Calls 2

beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected