$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Adrián Etchevarne (adrian.etchevarne_at_[hidden])
Date: 2006-05-29 10:04:24
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