Я хочу знать, возможно ли использовать складное выражение (и как его записать) в приведенном ниже примере.
#include <iostream>
#include <type_traits>
#include <typeinfo>
#include <sstream>
#include <iomanip>
template<int width>
std::string padFormat()
{
return "";
}
template<int width, typename T>
std::string padFormat(const T& t)
{
std::ostringstream oss;
oss << std::setw(width) << t;
return oss.str();
}
template<int width, typename T, typename ... Types>
std::string padFormat(const T& first, Types ... rest)
{
return (padFormat<width>(first + ... + rest)); //Fold expr here !!!
}
int main()
{
std::cout << padFormat<8>("one", 2, 3.0) << std::endl;
std::cout << padFormat<4>('a', "BBB", 9u, -8) << std::endl;
return 0;
}
Я пробовал до сих пор, но не понял !!
Спасибо.