Template 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.
Arguments
template Group(T...);
Example
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));
Aliases
Alias name | Description |
---|---|
expand |
Authors
Михаил Страшун
Copyright
© 2013 RejectedSoftware e.K.
License
Subject to the terms of the MIT license, as written in the included LICENSE.txt file.