MCPcopy Create free account
hub / github.com/SpartanJ/eepp / toLower

Method toLower

src/eepp/core/string.cpp:1187–1191  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1185}
1186
1187std::string String::toLower( std::string str ) {
1188 for ( std::string::iterator i = str.begin(); i != str.end(); ++i )
1189 *i = static_cast<char>( std::tolower( *i ) );
1190 return str;
1191}
1192
1193std::string String::capitalize( std::string str ) {
1194 char last = ' ';

Callers 9

createWindowMenuMethod · 0.80
createViewMenuMethod · 0.80
createFontsMenuMethod · 0.80
cmdGrepMethod · 0.80
toLowerSelectionMethod · 0.80
findTextMethod · 0.80
findTextLastMethod · 0.80
findMethod · 0.80
findLastMethod · 0.80

Calls 2

beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected