MCPcopy Create free account
hub / github.com/InteractiveComputerGraphics/SPlisHSPlasH / toLowerInPlace

Function toLowerInPlace

extern/Catch2/catch.hpp:13834–13836  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 1

toLowerFunction · 0.85

Calls 3

transformFunction · 0.85
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected