| 122 | |
| 123 | template<typename... Args> |
| 124 | static std::string connect(Args&&... args) { |
| 125 | std::string result; |
| 126 | (result += ... += toString(std::forward<Args>(args))); |
| 127 | return result; |
| 128 | } |
| 129 | |
| 130 | template<typename... Args> |
| 131 | static std::wstring connectw(Args&&... args) { |
nothing calls this directly
no outgoing calls
no test coverage detected