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

Method connect

source/src/tools/string.h:124–128  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected