http://www.perlmonks.org?node_id=194893


in reply to Re: Are prototypes evil?
in thread Are prototypes evil?

So, to do a hyper-add on two lists with that, "dmap { $a + $b } @foo, @bar". Without the prototype, that would have to have been written as the uglier "dmap sub { $a + $b }, \@foo, @bar"

If you wanted to use a literal list or the output of another sub as the second argument to dmap() as it is written in your node, you'd have to resort to dereferencing anonymous arrayrefs such as: @{[ your_sub_or_list_here ]} and that's just as ugly if not more so. The other choice would be to circumvent the "prototype" by calling it as &dmap( ... ) instead.

It might be "uglier" for some calls, but by writing it without the prototype, you encourage consistency which translates to cleaner code overall.

-sauoq
"My two cents aren't worth a dime.";