MCPcopy Create free account
hub / github.com/appdevforall/CodeOnTheGo / uppercase

Method uppercase

subprojects/llama.cpp/common/jinja/string.cpp:123–129  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

121}
122
123string string::uppercase() {
124 return apply_transform(*this, [](const std::string & s) {
125 std::string res = s;
126 std::transform(res.begin(), res.end(), res.begin(), ::toupper);
127 return res;
128 });
129}
130string string::lowercase() {
131 return apply_transform(*this, [](const std::string & s) {
132 std::string res = s;

Callers 9

addFileReferencesMethod · 0.80
value.cppFile · 0.80
LocaleValueClass · 0.80
bindMethod · 0.80
onBindViewHolderMethod · 0.80
onBindViewHolderMethod · 0.80
configureAndroidModuleFunction · 0.80
generateTaskNameFunction · 0.80

Calls 3

apply_transformFunction · 0.85
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected