MCPcopy Create free account
hub / github.com/KhronosGroup/OpenCOLLADA / Lower

Method Lower

DAEValidator/library/src/StringUtil.cpp:38–43  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

36 }
37
38 string String::Lower(const string & str)
39 {
40 string res = str;
41 transform(res.begin(), res.end(), res.begin(), [](const string::value_type & c) { return static_cast<string::value_type>(::tolower(c)); });
42 return res;
43 }
44
45 string String::Replace(const string & str, const string & search_str, const string & replace_str)
46 {

Callers

nothing calls this directly

Calls 2

beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected