Ie:
----------------------
struct Foo(T) {}
alias MyFoo = Foo!int;
----------------------
Is there a way to inspect MyFoo to get its T type (in this case, 'int')?
*Without* actually making any changes to Foo to explicitly support this?
Ie:
----------------------
struct Foo(T) {}
alias MyFoo = Foo!int;
----------------------
Is there a way to inspect MyFoo to get its T type (in this case, 'int')?
*Without* actually making any changes to Foo to explicitly support this?