http://d.puremagic.com/issues/show_bug.cgi?id=9582
Peter Alexander <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] | |m --- Comment #2 from Peter Alexander <[email protected]> 2013-02-24 08:08:11 PST --- This is by design. map expects an input range. Static arrays are not input ranges. You have to take a slice. auto ms = map!"a*a"(smt[]); // note additional [] reduce only requires an iterable, which includes static arrays. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
