MCPcopy Create free account
hub / github.com/CppMicroServices/CppMicroServices / ToLower

Function ToLower

framework/src/util/PropsCheck.cpp:75–81  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

73 }
74
75 std::string
76 ToLower(std::string const& s)
77 {
78 std::string sNew = s;
79 std::transform(sNew.begin(), sNew.end(), sNew.begin(), [](char c) { return ::tolower(c); });
80 return sNew;
81 }
82 } // namespace props_check
83} // namespace cppmicroservices

Callers 2

IsSimpleMethod · 0.85
EvaluateMethod · 0.85

Calls 2

beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected