| 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; } |
nothing calls this directly
no outgoing calls
no test coverage detected