MCPcopy Create free account
hub / github.com/PDAL/PDAL / tolower

Function tolower

pdal/util/Utils.hpp:172–178  ·  view source on GitHub ↗

Convert a string to lowercase. \return Converted string. **/

Source from the content-addressed store, hash-verified

170 \return Converted string.
171 **/
172 inline std::string tolower(const std::string& s)
173 {
174 std::string out;
175 for (size_t i = 0; i < s.size(); ++i)
176 out += (char)std::tolower(s[i]);
177 return out;
178 }
179
180 /**
181 Convert a string to uppercase.

Callers 15

executeMethod · 0.85
FauxReader.hppFile · 0.85
fromStringFunction · 0.85
preparedMethod · 0.85
fromStringFunction · 0.85
initializeMethod · 0.85
PlyWriter.hppFile · 0.85
initializeMethod · 0.85
PcdHeader.cppFile · 0.85
TESTFunction · 0.85
executeMethod · 0.85

Calls 1

sizeMethod · 0.45

Tested by 2

TESTFunction · 0.68
parseMethod · 0.68