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

Re: Compactness

by dmmiller2k (Chaplain)
on Jan 11, 2002 at 03:44 UTC ( [id://137867]=note: print w/replies, xml ) Need Help??


in reply to Compactness

Here's one of my own (recent) favorites, which is a variation on Ovid's initializing all elements of an hash to 1:

my %column_num; my @column_lbls = qw( Id Name SSN Phone FAX ); # initialize a hash with an array index: @column_num{ @column_lbls } = 0 .. $#column_lbls; # to find the index of the item matching $col_name: my $index = $column_lbls{$col_name}; # to find the column numbers of several columns (e.g., a database quer +y): my @cols = @column_lbls{ qw(Name Phone FAX) };

Update: Oh, and don't forget the Orcish Maneuver, another personal favorite.

dmm

You can give a man a fish and feed him for a day ...
Or, you can
teach him to fish and feed him for a lifetime

Log In?
Username:
Password:

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

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

    No recent polls found