Andrei Alexandrescu Wrote:
> Gone, that is. Walter agreed to remove it.
>
> To achieve the functionality of
>
> foreach_reverse (r) { ... }
>
> use
>
> foreach (retro(r)) { ... }
>
> using retro in std.range.
>
>
> AndreiWhat about where foreach is being done over something other than a range? eg. foreach(i; 1..100) foreach(v; structwithopapply)
