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

Method lowercase

common/jinja/string.cpp:130–136  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

128 });
129}
130string string::lowercase() {
131 return apply_transform(*this, [](const std::string & s) {
132 std::string res = s;
133 std::transform(res.begin(), res.end(), res.begin(), ::tolower);
134 return res;
135 });
136}
137string string::capitalize() {
138 return apply_transform(*this, [](const std::string & s) {
139 if (s.empty()) return 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