MCPcopy Create free account
hub / github.com/UZ-SLAMLab/ORB_SLAM3 / strToLower

Function strToLower

Thirdparty/g2o/g2o/stuff/string_tools.cpp:81–86  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

79}
80
81std::string strToLower(const std::string& s)
82{
83 string ret;
84 std::transform(s.begin(), s.end(), back_inserter(ret), (int(*)(int)) std::tolower);
85 return ret;
86}
87
88std::string strToUpper(const std::string& s)
89{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected