MCPcopy Create free account
hub / github.com/CodingGay/BlackDex / toLower

Function toLower

Bcore/src/main/cpp/Dobby/tests/catch.hpp:9520–9524  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9518 std::transform(s.begin(), s.end(), s.begin(), toLowerCh);
9519}
9520std::string toLower(std::string const &s) {
9521 std::string lc = s;
9522 toLowerInPlace(lc);
9523 return lc;
9524}
9525std::string trim(std::string const &str) {
9526 static char const *whitespaceChars = "\n\r\t ";
9527 std::string::size_type start = str.find_first_not_of(whitespaceChars);

Callers 8

makeCommandLineParserFunction · 0.85
listTagsFunction · 0.85
adjustStringMethod · 0.85
setTagsFunction · 0.85
NamePatternMethod · 0.85
matchesMethod · 0.85
TagPatternMethod · 0.85
adjustCaseMethod · 0.85

Calls 1

toLowerInPlaceFunction · 0.85

Tested by

no test coverage detected