digitalmars.D - Second parameter with ranges
- dsimcha (6/6) Apr 18 2009 How do you do something like the following with ranges?
- Andrei Alexandrescu (3/11) Apr 18 2009 No :o(.
How do you do something like the following with ranges?
auto foo = someRange([1U, 2, 3, 4, 5]);
foreach(index, elem; foo) {
writeln(index, " ", elem);
}
Has this been addressed yet?
Apr 18 2009
dsimcha wrote:
How do you do something like the following with ranges?
auto foo = someRange([1U, 2, 3, 4, 5]);
foreach(index, elem; foo) {
writeln(index, " ", elem);
}
Has this been addressed yet?
No :o(.
Andrei
Apr 18 2009








Andrei Alexandrescu <SeeWebsiteForEmail erdani.org>