"F i L" <witte2008 at gmail.com> wrote in message
news:oakvbobsvtawtdcasglk at forum.dlang.org...
>
> Other things that would be cool:
>
> - static foreach
We sort of do:
// Unrolled at compile-time
foreach(T; TypeTuple!(int, string, BigInt))
{
...
}
I'm not sure that's valid outside a function, though.