MCPcopy Create free account
hub / github.com/ChiyukiGana/Quickinput / connectw

Method connectw

source/src/tools/string.h:131–135  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

129
130 template<typename... Args>
131 static std::wstring connectw(Args&&... args) {
132 std::wstring result;
133 (result += ... += toWString(std::forward<Args>(args)));
134 return result;
135 }
136
137 static std::string toLower(std::string str) { std::string result; for (size_t s = 0; s < str.length(); s++) result += tolower(str[s]); return result; }
138 static std::wstring toLower(std::wstring str) { std::wstring result; for (size_t s = 0; s < str.length(); s++) result += towlower(str[s]); return result; }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected