http://d.puremagic.com/issues/show_bug.cgi?id=9582
[email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #3 from [email protected] 2013-02-24 08:11:52 PST --- (In reply to comment #2) > 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. ...and this is good example of why accepting an "iterable" as a function argument, as opposed to a range, is usually a bad idea. As for reduce accepting iterable, Andrei asked me to remove it in one of my open requests, so don't expect it keep working for too long. https://github.com/D-Programming-Language/phobos/pull/861#discussion_r2024457 -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
