
6 Aug
2006
6 Aug
'06
10:46 a.m.
Ion GaztaƱaga wrote:
It would be also nice a way to define a tuple of N objects of the same type: auto tup = make_tuple_n<bool, 6>;
Isn't this spelled: std::tr1::array< bool, 6 > tup; ? tr1 array should supply everything necessary to act as a homogeneous tuple, other than using the actual name 'tuple' - which I guess could show up in some template specialization cases. -- AlisdairM