TypeTuple which does not auto-expand.
Useful when you need to multiple several type tuples as different template argument list parameters, without merging those.
alias group = Group!(int, double, string); static assert (!is(typeof(group.length))); static assert (group.expand.length == 3); static assert (is(group.expand[1] == double));
See Implementation
TypeTuple which does not auto-expand.
Useful when you need to multiple several type tuples as different template argument list parameters, without merging those.