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

Method is_lowercase

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

Source from the content-addressed store, hash-verified

24}
25
26bool string_part::is_lowercase() const {
27 for (char c : val) {
28 if (std::isupper(static_cast<unsigned char>(c))) {
29 return false;
30 }
31 }
32 return true;
33}
34
35//
36// string

Callers 1

value.cppFile · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected