Код: Выделить всё
template
static std::string Join(const T& delim, const Args& ...args)
{
std::ostringstream oss;
bool first = true;
auto tmp = { ((first ? oss : oss
Подробнее здесь: [url]https://stackoverflow.com/questions/79118404/whats-the-meaning-of-the-following-c-code[/url]
Мобильная версия