instantiate a template alias with a set of arguments
struct T (uint i, uint j, uint k){} static assert (is (Instantiate!(T, 1,2,3) == T!(1,2,3)));
See Implementation
instantiate a template alias with a set of arguments