Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: Should I leave behind beautiful code or readable code?

by halley (Prior)
on Mar 29, 2007 at 17:43 UTC ( [id://607318]=note: print w/replies, xml ) Need Help??


in reply to Should I leave behind beautiful code or readable code?

I agree with the comments about the redundant map. As for readability, I'm a big fan of judicious placement of carriage returns. When it comes to Perl's pipeline idioms, each map or grep is another step in the pipeline. That produces code like the following. I've left the redundant map in to highlight the effect.
return map { split(/ /, $_, 2) } map { uc($_) } @somearray
Sure, if the reader is very new to Perl, they don't understand pipeline idioms at all. However, if the idiom is formatted as consistently as possible, they can absorb it just as quickly as the chaining-return idioms of other languages, like joe = foo().bar().baz().

--
[ e d @ h a l l e y . c c ]

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://607318]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (3)
As of 2024-04-19 19:52 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found