
29 May
2006
29 May
'06
2:04 p.m.
Problem: How can I get a tuple type from a tuples::cons<> list ? example: given the type: cons<int, cons<float, cons<int, null_type> > > obtain tuple<int, float, int> Real problem: I need to insert a type T at the beginning of a tuple, how I can do this? example given the type T and tuple<int, float>, obtain a tuple<T, int, float> Thanks in advance, Adrián