Group

TypeTuple which does not auto-expand.

Useful when you need to multiple several type tuples as different template argument list parameters, without merging those.

template Group (
T...
) {}

Members

Aliases

expand
alias expand = T
Undocumented in source.

Examples

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));

Meta