MCPcopy Create free account
hub / github.com/Tencent/libpag / ToLowerCase

Function ToLowerCase

exporter/src/utils/StringHelper.cpp:85–90  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

83}
84
85std::string ToLowerCase(const std::string& text) {
86 std::string result(text);
87 std::transform(result.begin(), result.end(), result.begin(),
88 [](unsigned char c) { return std::tolower(c); });
89 return result;
90}
91
92std::string ToUpperCase(const std::string& text) {
93 std::string result(text);

Callers 7

StringToBooleanFunction · 0.85
GetProjectFileBytesFunction · 0.85
findPackageinfoByNameMethod · 0.85
GetCompositionTypeFunction · 0.85
FromStringMethod · 0.85
DeleteAllTimeStretchInfoFunction · 0.85
GetTimeStretchInfoFunction · 0.85

Calls 1

transformFunction · 0.85

Tested by

no test coverage detected