Marco Leise:

foreach (i; 0 .. a.length)
{
    somework();
}

Better:

foreach (immutable _; 0 .. a.length)
{
    somework();
}

Unfortunately this syntax is not yet supported, for unknown reasons:

foreach (; 0 .. a.length)
{
    somework();
}

Bye,
bearophile

Reply via email to