Is typelist comcept still actual with variadic templates?

68 Views Asked by At

Since C++14 has variadic template concept, it's not clear why do we ever should use typeLists as their defined by Alexandrescu. For instance, I mean the following:

template <class T, class U>
struct Typelist
{
    typedef T Head;
    typedef U Tail;
}
0

There are 0 best solutions below