MCPcopy Create free account
hub / github.com/VCVRack/Rack / lowercase

Function lowercase

src/string.cpp:50–56  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

48
49
50std::string lowercase(const std::string& s) {
51 std::string r = s;
52 std::transform(r.begin(), r.end(), r.begin(), [](unsigned char c) {
53 return std::tolower(c);
54 });
55 return r;
56}
57
58
59std::string uppercase(const std::string& s) {

Callers 3

findIdFunction · 0.85
setDisplayValueStringMethod · 0.85
setDisplayValueStringMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected