MCPcopy Create free account
hub / github.com/antirez/llama.cpp-deepseek-v4-flash / uppercase

Method uppercase

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 1

value.cppFile · 0.80

Calls 3

apply_transformFunction · 0.85
endMethod · 0.80
beginMethod · 0.45

Tested by

no test coverage detected