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

Method is_uppercase

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

Source from the content-addressed store, hash-verified

15//
16
17bool string_part::is_uppercase() const {
18 for (char c : val) {
19 if (std::islower(static_cast<unsigned char>(c))) {
20 return false;
21 }
22 }
23 return true;
24}
25
26bool string_part::is_lowercase() const {
27 for (char c : val) {

Callers 1

value.cppFile · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected