Returns a AliasSeq of the template arguments used to instantiate T.
import std.meta : AliasSeq; struct Foo(T, U) {} static assert(is(TemplateArgsOf!(Foo!(int, real)) == AliasSeq!(int, real)));
See Implementation
Returns a AliasSeq of the template arguments used to instantiate T.