Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

(Ovid) Re: Compactness

by Ovid (Cardinal)
on Jan 11, 2002 at 02:56 UTC ( [id://137856]=note: print w/replies, xml ) Need Help??


in reply to Compactness

A couple of favorite compact idioms:

my %hash; # initialize all elements to 1 @hash{ @array } = (1) x @array; # assign empty string defaults $_ = "" for grep ! defined, ( $foo, $bar, $baz );

Compactness can be a good thing, but it's important to not golf. 10 lines of code is easier to maintain then 50, but it's going to depend on the skill of the maintainer (who should, but might not, recognize for ( 1..10 ){}) and the quality of the code in question. Ten lines of code is terrible if it doesn't do any sanity checking (if necessary).

Cheers,
Ovid

Join the Perlmonks Setiathome Group or just click on the the link and check out our stats.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (5)
As of 2024-04-19 22:46 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found