#ponce:
> I'm not sure how your static foreach is actually static.
It's a foreach on:
template TypeNuple(T, size_t n) {
static if(n == 0) {
alias TypeTuple!() TypeNuple;
}
else {
alias TypeTuple!(T,TypeNuple!(T, n-1)) TypeNuple;
}
}
So with the current D it's a static foreach.
Bye,
bearophile