http://d.puremagic.com/issues/show_bug.cgi?id=6256
--- Comment #2 from [email protected] 2013-08-19 20:03:36 PDT --- As for iterating over static arrays, one workaround is to slice it: import std.algorithm, std.range, std.stdio; void main() { uint[4] test = [1,2,3,4]; writeln(map!(a=>a+10)(test[])); } -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
