MCPcopy Create free account
hub / github.com/GameTechDev/PresentMon / ToLower

Function ToLower

IntelPresentMon/CommonUtilities/str/String.cpp:109–113  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

107 template std::wstring TrimWhitespace<std::wstring>(const std::wstring& input);
108
109 std::string ToLower(const std::string& input)
110 {
111 return input | std::views::transform([](char c) {return (char)tolower(c); })
112 | std::ranges::to<std::basic_string>();
113 }
114
115 std::wstring ToLower(const std::wstring& input)
116 {

Callers 9

PruneOldSwapChainDataFunction · 0.85
mainFunction · 0.85
GetLevelMapNarrowFunction · 0.85
WinMainFunction · 0.85
ParseLogLevel_Function · 0.85
ParseVerboseModules_Function · 0.85
PathSanitaryCheckFunction · 0.85
GetMetricInfoMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected