https://issues.dlang.org/show_bug.cgi?id=4265

Andrej Mitrovic <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|REOPENED                    |RESOLVED
         Resolution|---                         |WORKSFORME

--- Comment #12 from Andrej Mitrovic <[email protected]> ---
There's now TemplateArgsOf and TemplateOf in std.traits:

-----
import std.traits;

struct Foo(T1, T2)
{
}

alias Foo!(int, float) X;

pragma(msg, TemplateArgsOf!X);  // (int, float)
-----

--

Reply via email to