c++ - Is typelist comcept still actual with variadic templates? -
since c++14 has variadic template concept, it's not clear why ever should use typelist
s defined alexandrescu. instance, mean following:
template <class t, class u> struct typelist { typedef t head; typedef u tail; }
Comments
Post a Comment