MCPcopy Create free account
hub / github.com/GothenburgBitFactory/taskwarrior / lowerCase

Method lowerCase

src/Lexer.cpp:348–352  ·  view source on GitHub ↗

///////////////////////////////////////////////////////////////////////////

Source from the content-addressed store, hash-verified

346
347////////////////////////////////////////////////////////////////////////////////
348std::string Lexer::lowerCase(const std::string& input) {
349 std::string output = input;
350 std::transform(output.begin(), output.end(), output.begin(), tolower);
351 return output;
352}
353
354////////////////////////////////////////////////////////////////////////////////
355std::string Lexer::ucFirst(const std::string& input) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected