unqualified types in tuple

Dan dbdavidson at yahoo.com
Wed Nov 21 14:01:50 PST 2012


If I have a type tuple TL, which happens to be:
   alias TypeTuple!(const(int), immutable(double), string) TL;

How can I convert it into a tuple of (int, double, string)?

Effectively I need a way to get a new UnqualTL where each type in 
the list is itself unqualified. I need to do this without knowing 
the alias.

Thanks
Dan


More information about the Digitalmars-d-learn mailing list