While working on a program, I was using some hashes in various places. Declaring it in one place with default data and appending to it at a later point.
My question is this: There is a "." operator for concatenation strings (scalars), correct? Is there any equivalent to this for hashes?
i.e.
my %hash = ( a => 'b' );
# do stuff
%hash .= ( e => 'f', g => 'h', i => 'j' );
instead of the semi-tedious
$hash{'e'} = 'f';
$hash{'g'} = 'h';
$hash{'i'} = 'j';
or the seemingly ineffecient (?)
my @vals = qw( f h j );
my $i = 0;
$hash{$_} = $vals[$i++] foreach qw( e g i );
also, how about combining hashes? If not, what method is best for this? Would it be prudent to overload operators to include this kind of functionality (., .=) for hashes?
This is mostly just to satisfy curiosity and, of course, to learn as much as possible :)
Thanks!
--------------
"But what of all those sweet words you spoke in private?"
"Oh that's just what we call pillow talk, baby, that's all."
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.