Re: Getting a TypeTuple of a Template's Arguments

2015-08-18 Thread Meta via Digitalmars-d-learn
On Tuesday, 18 August 2015 at 07:41:00 UTC, thedeemon wrote: On Monday, 17 August 2015 at 21:23:49 UTC, Meta wrote: For functions, we have std.traits.ParameterTypeTuple. Is there any equivalent functionality for templates? I've recently searched for this thing and haven't found anything for

Re: Getting a TypeTuple of a Template's Arguments

2015-08-17 Thread Ali Çehreli via Digitalmars-d-learn
Aside: With 2.068, std.typetuple and TypeTuple are renamed as std.meta and AliasSeq, respectively. On 08/17/2015 02:23 PM, Meta wrote: For functions, we have std.traits.ParameterTypeTuple. Is there any equivalent functionality for templates? There is TemplateArgsOf for instances of