Listing 3: Typelist definition

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