Код: Выделить всё
template
struct type_tuple {
template
using get = Ts...[Index];
};
using T = type_tuple::get; // float
Подробнее здесь: https://stackoverflow.com/questions/791 ... pack-index
Код: Выделить всё
template
struct type_tuple {
template
using get = Ts...[Index];
};
using T = type_tuple::get; // float