Is there a way to strip a std::tuple in order to get it back to T...?
std::tuple
T...
Example
Suppose
template struct strip; template struct strip> { using type = vct; };
then use this as:
using Y = strip::type;
Now Y is same as X.
Y
X