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

Method lowercase

subprojects/llama.cpp/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 15

zeroCompressMavenRepoFunction · 0.80
isIndexableJarMethod · 0.80
reindexGeneratedJarsMethod · 0.80
insertBatchLockedMethod · 0.80
buildSelectQueryMethod · 0.80
resolveMatchingKeysMethod · 0.80
insertSingleLockedMethod · 0.80
IXmlSnippetScopeClass · 0.80
matchLevelMethod · 0.80
isMarkdownFileMethod · 0.80

Calls 3

apply_transformFunction · 0.85
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected