Is there a better way to express a range with stride than this:

foreach (i; iota(0, N, 2))

Maybe something similar to F# syntax:

foreach (i; 0..2..N)

I found this thread suggesting syntax improvement http://forum.dlang.org/thread/bug-411...@http.d.puremagic.com/issues/
but I don't think it produced any results.

BTW, DMD produces faster code when for loop is used instead, with GDC it makes no difference.

Reply via email to