template<class Msg, class... Args>
std::wstring descf(Msg, Args&&... args) {
std::wostringstream woss;
owss << Msg << ". " << ... << " " << args << ": '" << args << "' ";//not legal at all
//or
owss << Msg << ". " << args[0] << ": '" << args[1] << "' " << args[2] << ": '" << args[3] << "' "; //... pseudo code, and so on...
}
Wiem, że zamiast tego mogę po prostu użyć listy par lub czegoś podobnego, ale interesuje mnie to, jak to zrobić, zachowując składnię funkcji w celu:
const auto formatted = descf(L"message", "arg1", arg1, "arg2", arg2);